Packages

object Segment

Source
Segment.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Segment
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class Depth (value: Int) extends AnyVal with Product with Serializable
  2. final class Step [+O, +R] extends AnyRef

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 apply[O](os: O*): Segment[O, Unit]

    Creates a segment with the specified values.

  5. def array[O](os: Array[O]): Segment[O, Unit]

    Creates a segment backed by an array.

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def catenated[O](os: Catenable[Segment[O, Unit]]): Segment[O, Unit]

    Creates a segment backed by 0 or more other segments.

  8. def catenated[O, R](os: Catenable[Segment[O, R]], ifEmpty: ⇒ R): Segment[O, R]

    Creates a segment backed by 0 or more other segments.

  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def constant[O](o: O): Segment[O, Unit]

    Creates an infinite segment of the specified value.

  11. def empty[O]: Segment[O, Unit]

    Creates an empty segment of type O.

  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def from(n: Long, by: Long = 1): Segment[Long, Nothing]

    Creates a segment which outputs values starting at n and incrementing by by between each value.

  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  18. def indexedSeq[O](os: IndexedSeq[O]): Segment[O, Unit]

    Creates a segment backed by an IndexedSeq.

  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
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  23. def pure[O, R](r: R): Segment[O, R]

    Creates a segment which outputs no values a returns r.

  24. def seq[O](os: Seq[O]): Segment[O, Unit]

    Creates a segment backed by a Seq.

  25. def singleton[O](o: O): Segment[O, Unit]

    Creates a segment which outputs a single value o.

  26. def step[O, R](rem: ⇒ Segment[O, R])(s: ⇒ Unit): Step[O, R]
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. def unfold[S, O](s: S)(f: (S) ⇒ Option[(O, S)]): Segment[O, Unit]

    Creates a segment by successively applying f until a None is returned, emitting each output O and using each output S as input to the next invocation of f.

  30. def vector[O](os: Vector[O]): Segment[O, Unit]

    Creates a segment backed by a Vector.

  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped