implicit final class InputRemainderOps[R, E, A, B] extends AnyRef
- Alphabetic
- By Inheritance
- InputRemainderOps
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def ?: ZSink[R, Nothing, A, A, Option[B]]
Returns a new sink that tries to produce the
B, but if there is an error in stepping or extraction, producesNone. - final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def chunked: ZSink[R, E, A, Chunk[A], B]
Takes a
Sink, and lifts it to be chunked in its input.Takes a
Sink, and lifts it to be chunked in its input. This will not improve performance, but can be used to adapt non-chunked sinks wherever chunked sinks are required. - def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def collectAll: ZSink[R, E, A, A, List[B]]
Repeatedly runs this sink and accumulates its outputs to a list.
- def collectAllN(i: Int): ZSink[R, E, A, A, List[B]]
Repeatedly runs this sink until
ioutputs have been accumulated. - def collectAllWhile(p: (A) => Boolean): ZSink[R, E, A, A, List[B]]
Repeatedly runs this sink and accumulates its outputs for as long as incoming values verify the predicate.
- def collectAllWhileWith[S](p: (A) => Boolean)(z: S)(f: (S, B) => S): ZSink[R, E, A, A, S]
Repeatedly runs this sink and accumulates its outputs into a value of type
Sfor as long as the incoming values satisfy the predicate. - def collectAllWith[S](z: S)(f: (S, B) => S): ZSink[R, E, A, A, S]
Repeatedly runs this sink and accumulates the outputs into a value of type
S. - final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def optional: ZSink[R, Nothing, A, A, Option[B]]
A named alias for
?. - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def takeWhile(pred: (A) => Boolean): ZSink[R, E, A, A, B]
Produces a sink consuming all the elements of type
Aas long as they verify the predicatepred. - def toString(): String
- Definition Classes
- AnyRef → Any
- def untilOutput(f: (B) => Boolean): ZSink[R, E, A, A, Option[B]]
Creates a sink that produces values until one verifies the predicate
f.Creates a sink that produces values until one verifies the predicate
f.- Note
The predicate is only verified when the underlying signals completion, or when the resulting sink is extracted. Sinks that never signal completion (e.g. ZSink.collectAll) will not have the predicate applied to intermediate values.
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()