Class/Object

fs2

Segment

Related Docs: object Segment | package fs2

Permalink

abstract class Segment[+O, +R] extends AnyRef

Potentially infinite, pure sequence of values of type O and a result of type R.

All methods which return a Segment support fusion with other arbitrary methods that return Segments. This is similar to the staging approach described in Stream Fusion, to Completeness, but without code generation in staging.

Stack safety is ensured by tracking a fusion depth. If the depth reaches the limit, the computation is trampolined using cats.Eval.

The Chunk type is a subtype of Segment that supports efficient index-based random access.

Implementation notes:

Self Type
Segment[O, R]
Source
Segment.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Segment
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Segment()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Segment[O, R] to any2stringadd[Segment[O, R]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[O2 >: O, R2 >: R](s2: Segment[O2, R2]): Segment[O2, R2]

    Permalink

    Concatenates this segment with s2.

    Concatenates this segment with s2.

    Example:
    1. scala> (Segment(1,2,3) ++ Segment(4,5,6)).toVector
      res0: Vector[Int] = Vector(1, 2, 3, 4, 5, 6)
  5. def ->[B](y: B): (Segment[O, R], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Segment[O, R] to ArrowAssoc[Segment[O, R]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  7. final def append[O2 >: O, R2](s2: Segment[O2, R2]): Segment[O2, (R, R2)]

    Permalink

    Like ++ but allows the result type of s2 to differ from R.

  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. final def asResult[R2](r2: R2): Segment[O, R2]

    Permalink

    Alias for mapResult( => r2).

  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def collect[O2](pf: PartialFunction[O, O2]): Segment[O2, R]

    Permalink

    Filters and maps simultaneously.

    Filters and maps simultaneously.

    Example:
    1. scala> Segment(Some(1), None, Some(2)).collect { case Some(i) => i }.toVector
      res0: Vector[Int] = Vector(1, 2)
  12. final def cons[O2 >: O](o2: O2): Segment[O2, R]

    Permalink

    Equivalent to Segment.singleton(o2) ++ this.

    Equivalent to Segment.singleton(o2) ++ this.

    Example:
    1. scala> Segment(1, 2, 3).cons(0).toVector
      res0: Vector[Int] = Vector(0, 1, 2, 3)
  13. final def drain: Segment[Nothing, R]

    Permalink

    Returns a segment that suppresses all output and returns the result of this segment when run.

    Returns a segment that suppresses all output and returns the result of this segment when run.

    Example:
    1. scala> Segment.from(0).take(3).drain.run.toOption.get.take(5).toVector
      res0: Vector[Long] = Vector(3, 4, 5, 6, 7)
  14. final def drop(n: Long): Either[(R, Long), Segment[O, R]]

    Permalink

    Eagerly drops n elements from the head of this segment, returning either the result and the number of elements remaining to drop, if the end of the segment was reached, or a new segment, if the end of the segment was not reached.

    Eagerly drops n elements from the head of this segment, returning either the result and the number of elements remaining to drop, if the end of the segment was reached, or a new segment, if the end of the segment was not reached.

    Example:
    1. scala> Segment(1,2,3,4,5).drop(3).toOption.get.toVector
      res0: Vector[Int] = Vector(4, 5)
      scala> Segment(1,2,3,4,5).drop(7)
      res1: Either[(Unit, Long),Segment[Int,Unit]] = Left(((),2))
  15. final def dropWhile(p: (O) ⇒ Boolean, dropFailure: Boolean = false): Either[R, Segment[O, R]]

    Permalink

    Eagerly drops elements from the head of this segment until the supplied predicate returns false, returning either the result, if the end of the segment was reached without the predicate failing, or the remaining segment.

    Eagerly drops elements from the head of this segment until the supplied predicate returns false, returning either the result, if the end of the segment was reached without the predicate failing, or the remaining segment.

    If dropFailure is true, the first element that failed the predicate will be dropped. If false, the first element that failed the predicate will be the first element of the remainder.

    Example:
    1. scala> Segment(1,2,3,4,5).dropWhile(_ < 3).map(_.toVector)
      res0: Either[Unit,Vector[Int]] = Right(Vector(3, 4, 5))
      scala> Segment(1,2,3,4,5).dropWhile(_ < 10)
      res1: Either[Unit,Segment[Int,Unit]] = Left(())
  16. def ensuring(cond: (Segment[O, R]) ⇒ Boolean, msg: ⇒ Any): Segment[O, R]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Segment[O, R] to Ensuring[Segment[O, R]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: (Segment[O, R]) ⇒ Boolean): Segment[O, R]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Segment[O, R] to Ensuring[Segment[O, R]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean, msg: ⇒ Any): Segment[O, R]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Segment[O, R] to Ensuring[Segment[O, R]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean): Segment[O, R]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Segment[O, R] to Ensuring[Segment[O, R]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. def equals(a: Any): Boolean

    Permalink
    Definition Classes
    Segment → AnyRef → Any
  22. final def filter[O2](p: (O) ⇒ Boolean): Segment[O, R]

    Permalink

    Filters output elements of this segment with the supplied predicate.

    Filters output elements of this segment with the supplied predicate.

    Example:
    1. scala> Segment(1,2,3,4,5).filter(_ % 2 == 0).toVector
      res0: Vector[Int] = Vector(2, 4)
  23. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. final def flatMap[O2, R2](f: (O) ⇒ Segment[O2, R2]): Segment[O2, (R, Option[R2])]

    Permalink

    List-like flatMap, which applies f to each element of the segment and concatenates the results.

    List-like flatMap, which applies f to each element of the segment and concatenates the results.

    Example:
    1. scala> Segment(1, 2, 3).flatMap(i => Segment.seq(List.fill(i)(i))).toVector
      res0: Vector[Int] = Vector(1, 2, 2, 3, 3, 3)
  25. final def flatMapAccumulate[S, O2](init: S)(f: (S, O) ⇒ Segment[O2, S]): Segment[O2, (R, S)]

    Permalink

    Stateful version of flatMap, where the function depends on a state value initialized to init and updated upon each output.

    Stateful version of flatMap, where the function depends on a state value initialized to init and updated upon each output.

    The final state is returned in the result, paired with the result of the source stream.

    Example:
    1. scala> val src = Segment("Hello", "World", "\n", "From", "Mars").flatMapAccumulate(0)((l,s) =>
           |   if (s == "\n") Segment.empty.asResult(0) else Segment((l,s)).asResult(l + s.length))
      scala> src.toVector
      res0: Vector[(Int,String)] = Vector((0,Hello), (5,World), (0,From), (4,Mars))
      scala> src.void.run
      res1: (Unit,Int) = ((),8)
  26. final def flatten[O2, R2 >: R](implicit ev: <:<[O, Segment[O2, R2]]): Segment[O2, R2]

    Permalink

    Flattens a Segment[Segment[O2,R],R] in to a Segment[O2,R].

    Flattens a Segment[Segment[O2,R],R] in to a Segment[O2,R].

    Example:
    1. scala> Segment(Segment(1, 2), Segment(3, 4, 5)).flatten.toVector
      res0: Vector[Int] = Vector(1, 2, 3, 4, 5)
  27. final def flattenChunks[O2](implicit ev: <:<[O, Chunk[O2]]): Segment[O2, R]

    Permalink

    Flattens a Segment[Chunk[O2],R] in to a Segment[O2,R].

    Flattens a Segment[Chunk[O2],R] in to a Segment[O2,R].

    Example:
    1. scala> Segment(Chunk(1, 2), Chunk(3, 4, 5)).flattenChunks.toVector
      res0: Vector[Int] = Vector(1, 2, 3, 4, 5)
  28. final def fold[B](z: B)(f: (B, O) ⇒ B): Segment[Nothing, B]

    Permalink

    Folds the output elements of this segment and returns the result as the result of the returned segment.

    Folds the output elements of this segment and returns the result as the result of the returned segment.

    Example:
    1. scala> Segment(1,2,3,4,5).fold(0)(_ + _).run
      res0: Int = 15
  29. def foreach(f: (O) ⇒ Unit): Unit

    Permalink

    Invokes f on each output of this segment.

    Invokes f on each output of this segment.

    Example:
    1. scala> val buf = collection.mutable.ListBuffer[Int]()
      scala> Segment(1,2,3).cons(0).foreach(i => buf += i)
      res0: Unit = ()
      scala> buf.toList
      res1: List[Int] = List(0, 1, 2, 3)
  30. def foreachChunk(f: (Chunk[O]) ⇒ Unit): Unit

    Permalink

    Invokes f on each chunk of this segment.

    Invokes f on each chunk of this segment.

    Example:
    1. scala> val buf = collection.mutable.ListBuffer[Chunk[Int]]()
      scala> Segment(1,2,3).cons(0).foreachChunk(c => buf += c)
      res0: Unit = ()
      scala> buf.toList
      res1: List[Chunk[Int]] = List(Chunk(0), Chunk(1, 2, 3))
  31. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Segment[O, R] to StringFormat[Segment[O, R]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  32. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  33. def hashCode(): Int

    Permalink
    Definition Classes
    Segment → AnyRef → Any
  34. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  35. def last: Segment[Nothing, (R, Option[O])]

    Permalink

    Returns a segment that suppresses all output and returns the last element output by source segment paired with the source segment result.

    Returns a segment that suppresses all output and returns the last element output by source segment paired with the source segment result.

    Example:
    1. scala> Segment(1,2,3).last.run
      res0: (Unit, Option[Int]) = ((),Some(3))
  36. def map[O2](f: (O) ⇒ O2): Segment[O2, R]

    Permalink

    Returns a segment that maps each output using the supplied function.

    Returns a segment that maps each output using the supplied function.

    Example:
    1. scala> Segment(1,2,3).map(_ + 1).toVector
      res0: Vector[Int] = Vector(2, 3, 4)
  37. def mapAccumulate[S, O2](init: S)(f: (S, O) ⇒ (S, O2)): Segment[O2, (R, S)]

    Permalink

    Stateful version of map, where the map function depends on a state value initialized to init and updated upon each output value.

    Stateful version of map, where the map function depends on a state value initialized to init and updated upon each output value.

    The final state is returned in the result, paired with the result of the source stream.

    Example:
    1. scala> val src = Segment("Hello", "World").mapAccumulate(0)((l,s) => (l + s.length, (l, s)))
      scala> src.toVector
      res0: Vector[(Int,String)] = Vector((0,Hello), (5,World))
      scala> src.void.run
      res1: (Unit,Int) = ((),10)
  38. final def mapConcat[O2](f: (O) ⇒ Chunk[O2]): Segment[O2, R]

    Permalink

    Returns a segment that maps each output using the supplied function and concatenates all the results.

    Returns a segment that maps each output using the supplied function and concatenates all the results.

    Example:
    1. scala> Segment(1,2,3).mapConcat(o => Chunk.seq(List.range(0, o))).toVector
      res0: Vector[Int] = Vector(0, 0, 1, 0, 1, 2)
  39. final def mapResult[R2](f: (R) ⇒ R2): Segment[O, R2]

    Permalink

    Maps the supplied function over the result of this segment.

    Maps the supplied function over the result of this segment.

    Example:
    1. scala> Segment('a', 'b', 'c').withSize.mapResult { case (_, size) => size }.void.run
      res0: Long = 3
  40. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  41. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  42. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  43. final def prepend[O2 >: O](c: Segment[O2, Any]): Segment[O2, R]

    Permalink

    Equivalent to s2 ++ this.

    Equivalent to s2 ++ this.

    Example:
    1. scala> Segment(1, 2, 3).prepend(Segment(-1, 0)).toVector
      res0: Vector[Int] = Vector(-1, 0, 1, 2, 3)
  44. final def run[O2 >: O](implicit ev: =:=[O2, Unit]): R

    Permalink

    Computes the result of this segment.

    Computes the result of this segment. May only be called when O is Unit, to prevent accidentally ignoring output values. To intentionally ignore outputs, call s.void.run.

    Example:
    1. scala> Segment(1, 2, 3).withSize.void.run
      res0: (Unit,Long) = ((),3)
  45. final def scan[B](z: B, emitFinal: Boolean = true)(f: (B, O) ⇒ B): Segment[B, B]

    Permalink

    Like fold but outputs intermediate results.

    Like fold but outputs intermediate results. If emitFinal is true, upon reaching the end of the stream, the accumulated value is output. If emitFinal is false, the accumulated output is not output. Regardless, the accumulated value is returned as the result of the segment.

    Example:
    1. scala> Segment(1, 2, 3, 4, 5).scan(0)(_+_).toVector
      res0: Vector[Int] = Vector(0, 1, 3, 6, 10, 15)
  46. final def splitAt(n: Long): Either[(R, Catenable[Segment[O, Unit]], Long), (Catenable[Segment[O, Unit]], Segment[O, R])]

    Permalink

    Splits this segment at the specified index by simultaneously taking and dropping.

    Splits this segment at the specified index by simultaneously taking and dropping.

    If the segment has less than n elements, a left is returned, providing the result of the segment, all sub-segments taken, and the remaining number of elements (i.e., size - n).

    If the segment has more than n elements, a right is returned, providing the sub-segments up to the n-th element and a remainder segment.

    The prefix is computed eagerly while the suffix is computed lazily.

    Example:
    1. scala> Segment(1, 2, 3, 4, 5).splitAt(2)
      res0: Either[(Unit,Catenable[Segment[Int,Unit]],Long),(Catenable[Segment[Int,Unit]],Segment[Int,Unit])] = Right((Catenable(Chunk(1, 2)),Chunk(3, 4, 5)))
      scala> Segment(1, 2, 3, 4, 5).splitAt(7)
      res0: Either[(Unit,Catenable[Segment[Int,Unit]],Long),(Catenable[Segment[Int,Unit]],Segment[Int,Unit])] = Left(((),Catenable(Chunk(1, 2, 3, 4, 5)),2))
  47. final def splitWhile(p: (O) ⇒ Boolean, emitFailure: Boolean = false): Either[(R, Catenable[Segment[O, Unit]]), (Catenable[Segment[O, Unit]], Segment[O, R])]

    Permalink

    Splits this segment at the first element where the supplied predicate returns false.

    Splits this segment at the first element where the supplied predicate returns false.

    Analagous to siumultaneously running takeWhile and dropWhile.

    If emitFailure is false, the first element which fails the predicate is returned in the suffix segment. If true, it is returned as the last element in the prefix segment.

    If the end of the segment is reached and the predicate has not failed, a left is returned, providing the segment result and the catenated sub-segments. Otherwise, a right is returned, providing the prefix sub-segments and the suffix remainder.

    Example:
    1. scala> Segment(1, 2, 3, 4, 5).splitWhile(_ != 3)
      res0: Either[(Unit,Catenable[Segment[Int,Unit]]),(Catenable[Segment[Int,Unit]],Segment[Int,Unit])] = Right((Catenable(Chunk(1, 2)),Chunk(3, 4, 5)))
      scala> Segment(1, 2, 3, 4, 5).splitWhile(_ != 7)
      res0: Either[(Unit,Catenable[Segment[Int,Unit]]),(Catenable[Segment[Int,Unit]],Segment[Int,Unit])] = Left(((),Catenable(Chunk(1, 2, 3, 4, 5))))
  48. final def sum[N >: O](implicit N: Numeric[N]): Segment[Nothing, N]

    Permalink

    Sums the elements of this segment and returns the sum as the segment result.

    Sums the elements of this segment and returns the sum as the segment result.

    Example:
    1. scala> Segment(1, 2, 3, 4, 5).sum.run
      res0: Int = 15
  49. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  50. final def take(n: Long): Segment[O, Either[(R, Long), Segment[O, R]]]

    Permalink

    Lazily takes n elements from this segment.

    Lazily takes n elements from this segment. The result of the returned segment is either a left containing the result of the original segment and the number of elements remaining to take when the end of the source segment was reached, or a right containing the remainder of the source segment after n elements are taken.

    Example:
    1. scala> Segment.from(0).take(3).toVector
      res0: Vector[Long] = Vector(0, 1, 2)
      scala> Segment.from(0).take(3).void.run.toOption.get.take(5).toVector
      res1: Vector[Long] = Vector(3, 4, 5, 6, 7)
      scala> Segment(1, 2, 3).take(5).void.run
      res2: Either[(Unit, Long),Segment[Int,Unit]] = Left(((),2))
  51. final def takeWhile(p: (O) ⇒ Boolean, takeFailure: Boolean = false): Segment[O, Either[R, Segment[O, R]]]

    Permalink

    Returns a segment that outputs elements while p is true.

    Returns a segment that outputs elements while p is true.

    The result of the returned segment is either the result of the original stream, if the end was reached and the predicate was still passing, or the remaining stream, if the predicate failed. If takeFailure is true, the last element output is the first element which failed the predicate. If takeFailure is false, the first element of the remainder is the first element which failed the predicate.

    Example:
    1. scala> Segment.from(0).takeWhile(_ < 3).toVector
      res0: Vector[Long] = Vector(0, 1, 2)
      scala> Segment.from(0).takeWhile(_ < 3, takeFailure = true).toVector
      res1: Vector[Long] = Vector(0, 1, 2, 3)
      scala> Segment.from(0).takeWhile(_ < 3).void.run.toOption.get.take(5).toVector
      res2: Vector[Long] = Vector(3, 4, 5, 6, 7)
  52. def toArray[O2 >: O](implicit ct: ClassTag[O2]): Array[O2]

    Permalink

    Converts this segment to an array, discarding the result.

    Converts this segment to an array, discarding the result.

    Caution: calling toArray on an infinite sequence will not terminate.

    Example:
    1. scala> Segment(1, 2, 3).cons(0).cons(-1).toArray
      res0: Array[Int] = Array(-1, 0, 1, 2, 3)
  53. def toCatenable: Catenable[O]

    Permalink

    Converts this segment to a catenable of output values, discarding the result.

    Converts this segment to a catenable of output values, discarding the result.

    Caution: calling toCatenable on an infinite sequence will not terminate.

    Example:
    1. scala> Segment(1, 2, 3).cons(0).cons(-1).toCatenable.toList
      res0: List[Int] = List(-1, 0, 1, 2, 3)
  54. def toChunk: Chunk[O]

    Permalink

    Converts this segment to a single chunk, discarding the result.

    Converts this segment to a single chunk, discarding the result.

    Caution: calling toChunk on an infinite sequence will not terminate.

    Example:
    1. scala> Segment(1, 2, 3).cons(0).cons(-1).toChunk
      res0: Chunk[Int] = Chunk(-1, 0, 1, 2, 3)
  55. def toChunks: Catenable[Chunk[O]]

    Permalink

    Converts this segment to a sequence of chunks, discarding the result.

    Converts this segment to a sequence of chunks, discarding the result.

    Caution: calling toChunks on an infinite sequence will not terminate.

    Example:
    1. scala> Segment(1, 2, 3).cons(0).cons(-1).toChunks.toList
      res0: List[Chunk[Int]] = List(Chunk(-1), Chunk(0), Chunk(1, 2, 3))
  56. def toList: List[O]

    Permalink

    Converts this segment to a list, discarding the result.

    Converts this segment to a list, discarding the result.

    Caution: calling toList on an infinite sequence will not terminate.

    Example:
    1. scala> Segment(1, 2, 3).cons(0).cons(-1).toList
      res0: List[Int] = List(-1, 0, 1, 2, 3)
  57. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  58. def toVector: Vector[O]

    Permalink

    Converts this segment to a list, discarding the result.

    Converts this segment to a list, discarding the result.

    Caution: calling toList on an infinite sequence will not terminate.

    Example:
    1. scala> Segment(1, 2, 3).cons(0).cons(-1).toList
      res0: List[Int] = List(-1, 0, 1, 2, 3)
  59. final def uncons: Either[R, (Segment[O, Unit], Segment[O, R])]

    Permalink

    Returns the first output sub-segment of this segment along with the remainder, wrapped in Right, or if this segment is empty, returns the result wrapped in Left.

    Returns the first output sub-segment of this segment along with the remainder, wrapped in Right, or if this segment is empty, returns the result wrapped in Left.

    Example:
    1. scala> Segment(1, 2, 3).cons(0).uncons
      res0: Either[Unit,(Segment[Int,Unit], Segment[Int,Unit])] = Right((Chunk(0),Chunk(1, 2, 3)))
      scala> Segment.empty[Int].uncons
      res1: Either[Unit,(Segment[Int,Unit], Segment[Int,Unit])] = Left(())
  60. final def uncons1: Either[R, (O, Segment[O, R])]

    Permalink

    Returns the first output of this segment along with the remainder, wrapped in Right, or if this segment is empty, returns the result wrapped in Left.

    Returns the first output of this segment along with the remainder, wrapped in Right, or if this segment is empty, returns the result wrapped in Left.

    Annotations
    @tailrec()
    Example:
    1. scala> Segment(1, 2, 3).cons(0).uncons1
      res0: Either[Unit,(Int, Segment[Int,Unit])] = Right((0,Chunk(1, 2, 3)))
      scala> Segment.empty[Int].uncons1
      res1: Either[Unit,(Int, Segment[Int,Unit])] = Left(())
  61. def unconsChunk: Either[R, (Chunk[O], Segment[O, R])]

    Permalink

    Returns the first output chunk of this segment along with the remainder, wrapped in Right, or if this segment is empty, returns the result wrapped in Left.

    Returns the first output chunk of this segment along with the remainder, wrapped in Right, or if this segment is empty, returns the result wrapped in Left.

    Example:
    1. scala> Segment(1, 2, 3).prepend(Chunk(-1, 0)).unconsChunk
      res0: Either[Unit,(Chunk[Int], Segment[Int,Unit])] = Right((Chunk(-1, 0),Chunk(1, 2, 3)))
      scala> Segment.empty[Int].unconsChunk
      res1: Either[Unit,(Chunk[Int], Segment[Int,Unit])] = Left(())
  62. final def unconsChunks: Either[R, (Catenable[Chunk[O]], Segment[O, R])]

    Permalink

    Returns the first output chunks of this segment along with the remainder, wrapped in Right, or if this segment is empty, returns the result wrapped in Left.

    Returns the first output chunks of this segment along with the remainder, wrapped in Right, or if this segment is empty, returns the result wrapped in Left.

    Differs from unconsChunk when a single step results in multiple outputs.

    Example:
    1. scala> Segment(1, 2, 3).prepend(Chunk(-1, 0)).unconsChunks
      res0: Either[Unit,(Catenable[Chunk[Int]], Segment[Int,Unit])] = Right((Catenable(Chunk(-1, 0)),Chunk(1, 2, 3)))
      scala> Segment.empty[Int].unconsChunks
      res1: Either[Unit,(Catenable[Chunk[Int]], Segment[Int,Unit])] = Left(())
  63. final def void: Segment[Unit, R]

    Permalink

    Alias for map(_ => ()).

    Alias for map(_ => ()).

    Example:
    1. scala> Segment(1, 2, 3).void.toList
      res0: List[Unit] = List((), (), ())
  64. final def voidResult: Segment[O, Unit]

    Permalink

    Returns a new segment which discards the result and replaces it with unit.

    Returns a new segment which discards the result and replaces it with unit.

    Example:
    1. scala> Segment(1, 2, 3).take(2).voidResult
      res0: Segment[Int,Unit] = ((Chunk(1, 2, 3)).take(2)).mapResult(<f1>)
  65. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  66. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  67. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  68. def withSize: Segment[O, (R, Long)]

    Permalink

    Returns a new segment which includes the number of elements output in the result.

    Returns a new segment which includes the number of elements output in the result.

    Example:
    1. scala> Segment(1, 2, 3).withSize.void.run
      res0: (Unit,Long) = ((),3)
  69. def zipWith[O2, R2, O3](that: Segment[O2, R2])(f: (O, O2) ⇒ O3): Segment[O3, Either[(R, Segment[O2, R2]), (R2, Segment[O, R])]]

    Permalink

    Zips this segment with another segment using the supplied function to combine elements from this and that.

    Zips this segment with another segment using the supplied function to combine elements from this and that. Terminates when either segment terminates.

    Example:
    1. scala> Segment(1,2,3).zipWith(Segment(4,5,6,7))(_+_).toList
      res0: List[Int] = List(5, 7, 9)
  70. def [B](y: B): (Segment[O, R], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Segment[O, R] to ArrowAssoc[Segment[O, R]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Segment[O, R] to any2stringadd[Segment[O, R]]

Inherited by implicit conversion StringFormat from Segment[O, R] to StringFormat[Segment[O, R]]

Inherited by implicit conversion Ensuring from Segment[O, R] to Ensuring[Segment[O, R]]

Inherited by implicit conversion ArrowAssoc from Segment[O, R] to ArrowAssoc[Segment[O, R]]

Ungrouped