final class TraversableOnceOps[C[X] <: TraversableOnce[X], A] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TraversableOnceOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new TraversableOnceOps(coll: C[A])
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def asyncFoldLeft[B](zero: commons.Future[B])(fun: (B, A) ⇒ commons.Future[B])(implicit ec: commons.ExecutionContext): commons.Future[B]
- def asyncFoldRight[B](zero: commons.Future[B])(fun: (A, B) ⇒ commons.Future[B])(implicit ec: commons.ExecutionContext): commons.Future[B]
- def asyncForeach(fun: (A) ⇒ commons.Future[Unit])(implicit ec: commons.ExecutionContext): commons.Future[Unit]
- def collectFirstOpt[B](pf: PartialFunction[A, B]): commons.Opt[B]
- def findOpt(p: (A) ⇒ Boolean): commons.Opt[A]
- def flatCollect[B, That](f: PartialFunction[A, TraversableOnce[B]])(implicit cbf: CanBuildFrom[C[A], B, That]): That
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def groupToMap[K, V, To](keyFun: (A) ⇒ K, valueFun: (A) ⇒ V)(implicit cbf: CanBuildFrom[C[A], V, To]): Map[K, To]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def maxOpt[B >: A](implicit arg0: Ordering[B]): commons.Opt[B]
- def maxOptBy[B](f: (A) ⇒ B)(implicit arg0: Ordering[B]): commons.Opt[A]
- def minOpt[B >: A](implicit arg0: Ordering[B]): commons.Opt[B]
- def minOptBy[B](f: (A) ⇒ B)(implicit arg0: Ordering[B]): commons.Opt[A]
- def mkMap[K, V](keyFun: (A) ⇒ K, valueFun: (A) ⇒ V): Map[K, V]
- def mkStringOr(sep: String, default: String): String
- def mkStringOr(start: String, sep: String, end: String, default: String): String
- def mkStringOrEmpty(start: String, sep: String, end: String): String
- def reduceLeftOpt[B >: A](op: (B, A) ⇒ B): commons.Opt[B]
- def reduceOpt[A1 >: A](op: (A1, A1) ⇒ A1): commons.Opt[A1]
- def reduceRightOpt[B >: A](op: (A, B) ⇒ B): commons.Opt[B]
- def toMapBy[K](keyFun: (A) ⇒ K): Map[K, A]
- def toSized[M[_]](sizeHint: Int)(implicit cbf: CanBuildFrom[Nothing, A, M[A]]): M[A]
-
def
toString(): String
- Definition Classes
- Any