Packages

c

scail.commons.ops.collection

TraversableOnceOps

implicit final class TraversableOnceOps[A] extends AnyVal

Extension methods for TraversableOnce[A].

Annotations
@SuppressWarnings()
Source
collection.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TraversableOnceOps
  2. AnyVal
  3. Any
Implicitly
  1. by AnyOps
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TraversableOnceOps(value: TraversableOnce[A])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from TraversableOnceOps[A] to any2stringadd[TraversableOnceOps[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (TraversableOnceOps[A], B)
    Implicit
    This member is added by an implicit conversion from TraversableOnceOps[A] to ArrowAssoc[TraversableOnceOps[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def ensuring(cond: (TraversableOnceOps[A]) ⇒ Boolean, msg: ⇒ Any): TraversableOnceOps[A]
    Implicit
    This member is added by an implicit conversion from TraversableOnceOps[A] to Ensuring[TraversableOnceOps[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  8. def ensuring(cond: (TraversableOnceOps[A]) ⇒ Boolean): TraversableOnceOps[A]
    Implicit
    This member is added by an implicit conversion from TraversableOnceOps[A] to Ensuring[TraversableOnceOps[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: Boolean, msg: ⇒ Any): TraversableOnceOps[A]
    Implicit
    This member is added by an implicit conversion from TraversableOnceOps[A] to Ensuring[TraversableOnceOps[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean): TraversableOnceOps[A]
    Implicit
    This member is added by an implicit conversion from TraversableOnceOps[A] to Ensuring[TraversableOnceOps[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from TraversableOnceOps[A] to StringFormat[TraversableOnceOps[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  12. def future: Future[TraversableOnceOps[A]]

    Creates an already completed Future containing value.

    Creates an already completed Future containing value.

    returns

    the already completed Future with the specified result

    Implicit
    This member is added by an implicit conversion from TraversableOnceOps[A] to AnyOps[TraversableOnceOps[A]] performed by method AnyOps in scail.commons.ops.
    Definition Classes
    AnyOps
    Annotations
    @inline()
  13. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def option: Option[TraversableOnceOps[A]]

    Creates an Option containing value.

    Creates an Option containing value.

    returns

    Some(value) if value is not null, None otherwise

    Implicit
    This member is added by an implicit conversion from TraversableOnceOps[A] to AnyOps[TraversableOnceOps[A]] performed by method AnyOps in scail.commons.ops.
    Definition Classes
    AnyOps
    Annotations
    @inline()
  16. def safeMax[B >: A](implicit cmp: Ordering[B]): Option[A]

    Typesafe alternative to max.

    Typesafe alternative to max. Finds the largest element.

    returns

    optionally the largest element of this collection, None if empty

  17. def safeMaxBy[B](f: (A) ⇒ B)(implicit arg0: Ordering[B]): Option[A]

    Typesafe alternative to maxBy.

    Typesafe alternative to maxBy. Finds the first element which yields the largest value measured by f.

    returns

    optionally the largest element of this collection, None if empty

  18. def safeMin[B >: A](implicit cmp: Ordering[B]): Option[A]

    Typesafe alternative to min.

    Typesafe alternative to min. Finds the smallest element.

    returns

    optionally the smallest element of this collection, None if empty

  19. def safeMinBy[B](f: (A) ⇒ B)(implicit arg0: Ordering[B]): Option[A]

    Typesafe alternative to minBy.

    Typesafe alternative to minBy. Finds the first element which yields the smallest value measured by f.

    returns

    optionally the smallest element of this collection, None if empty

  20. def tap(f: (TraversableOnceOps[A]) ⇒ Unit): TraversableOnceOps[A]

    Applies side-effectul method to value, returning value.

    Applies side-effectul method to value, returning value.

    f

    the side-effectful method to apply to value

    returns

    value

    Implicit
    This member is added by an implicit conversion from TraversableOnceOps[A] to AnyOps[TraversableOnceOps[A]] performed by method AnyOps in scail.commons.ops.
    Definition Classes
    AnyOps
  21. def toString(): String
    Definition Classes
    Any
  22. def [B](y: B): (TraversableOnceOps[A], B)
    Implicit
    This member is added by an implicit conversion from TraversableOnceOps[A] to ArrowAssoc[TraversableOnceOps[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion AnyOps from TraversableOnceOps[A] to AnyOps[TraversableOnceOps[A]]

Inherited by implicit conversion any2stringadd from TraversableOnceOps[A] to any2stringadd[TraversableOnceOps[A]]

Inherited by implicit conversion StringFormat from TraversableOnceOps[A] to StringFormat[TraversableOnceOps[A]]

Inherited by implicit conversion Ensuring from TraversableOnceOps[A] to Ensuring[TraversableOnceOps[A]]

Inherited by implicit conversion ArrowAssoc from TraversableOnceOps[A] to ArrowAssoc[TraversableOnceOps[A]]

Ungrouped