class StepperExtensions[A] extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StepperExtensions
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new StepperExtensions(s: Stepper[A])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def accumulate[C](implicit info: AccumulatorFactoryInfo[A, C]): C
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def count(p: (A) => Boolean): Long

    Consumes all remaining elements in this Stepper and counts how many satisfy condition p.

    Consumes all remaining elements in this Stepper and counts how many satisfy condition p. This is a terminal operation.

  8. def count(): Long

    Consumes all remaining elements in this Stepper and counts how many there are.

    Consumes all remaining elements in this Stepper and counts how many there are. This is a terminal operation.

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def exists(p: (A) => Boolean): Boolean

    Searches for an element that satisfies condition p.

    Searches for an element that satisfies condition p. If none are found, it returns false. This is a terminal operation.

  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. def find(p: (A) => Boolean): Option[A]

    Searches for an element that satisifes condition p, returning it wrapped in Some if one is found, or None otherwise.

    Searches for an element that satisifes condition p, returning it wrapped in Some if one is found, or None otherwise. This is a terminal operation.

  14. def fold[B](zero: B)(op: (B, A) => B): B

    Repeatedly applies op to propagate an initial value zero through all elements of the collection.

    Repeatedly applies op to propagate an initial value zero through all elements of the collection. Traversal order is left-to-right. This is a terminal operation.

  15. def foldTo[B](zero: B)(op: (B, A) => B)(p: (B) => Boolean): B

    Repeatedly applies op to propagate an initial value zero through the collection until a condition p is met.

    Repeatedly applies op to propagate an initial value zero through the collection until a condition p is met. If p is never met, the result of the last operation is returned. This is a terminal operation.

  16. def foreach(f: (A) => Unit): Unit

    Applies f to every remaining element in the collection.

    Applies f to every remaining element in the collection. This is a terminal operation.

  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def reduce(op: (A, A) => A): A

    Repeatedly merges elements with op until only a single element remains.

    Repeatedly merges elements with op until only a single element remains. Throws an exception if the Stepper is empty. Merging occurs from left to right. This is a terminal operation.

  24. def substep(): Stepper[A]
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped