final class TraversableOnceOps[C[X] <: TraversableOnce[X], A] extends AnyVal

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TraversableOnceOps
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TraversableOnceOps(coll: C[A])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def asyncFoldLeft[B](zero: commons.Future[B])(fun: (B, A) ⇒ commons.Future[B])(implicit ec: commons.ExecutionContext): commons.Future[B]
  6. def asyncFoldRight[B](zero: commons.Future[B])(fun: (A, B) ⇒ commons.Future[B])(implicit ec: commons.ExecutionContext): commons.Future[B]
  7. def asyncForeach(fun: (A) ⇒ commons.Future[Unit])(implicit ec: commons.ExecutionContext): commons.Future[Unit]
  8. def collectFirstOpt[B](pf: PartialFunction[A, B]): commons.Opt[B]
  9. def findOpt(p: (A) ⇒ Boolean): commons.Opt[A]
  10. def flatCollect[B, That](f: PartialFunction[A, TraversableOnce[B]])(implicit cbf: CanBuildFrom[C[A], B, That]): That
  11. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  12. def groupToMap[K, V, To](keyFun: (A) ⇒ K, valueFun: (A) ⇒ V)(implicit cbf: CanBuildFrom[C[A], V, To]): Map[K, To]
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def maxOpt[B >: A](implicit arg0: Ordering[B]): commons.Opt[B]
  15. def maxOptBy[B](f: (A) ⇒ B)(implicit arg0: Ordering[B]): commons.Opt[A]
  16. def minOpt[B >: A](implicit arg0: Ordering[B]): commons.Opt[B]
  17. def minOptBy[B](f: (A) ⇒ B)(implicit arg0: Ordering[B]): commons.Opt[A]
  18. def mkMap[K, V](keyFun: (A) ⇒ K, valueFun: (A) ⇒ V): Map[K, V]
  19. def mkStringOr(sep: String, default: String): String
  20. def mkStringOr(start: String, sep: String, end: String, default: String): String
  21. def mkStringOrEmpty(start: String, sep: String, end: String): String
  22. def reduceLeftOpt[B >: A](op: (B, A) ⇒ B): commons.Opt[B]
  23. def reduceOpt[A1 >: A](op: (A1, A1) ⇒ A1): commons.Opt[A1]
  24. def reduceRightOpt[B >: A](op: (A, B) ⇒ B): commons.Opt[B]
  25. def toMapBy[K](keyFun: (A) ⇒ K): Map[K, A]
  26. def toSized[M[_]](sizeHint: Int)(implicit cbf: CanBuildFrom[Nothing, A, M[A]]): M[A]
  27. def toString(): String
    Definition Classes
    Any

Inherited from AnyVal

Inherited from Any

Ungrouped