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