implicit final class NoRemainderOps[R, E, A, B] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- NoRemainderOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
?: ZSink[R, E, 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
-
final
def
collectAll: ZSink[R, E, A, A, List[B]]
Accumulates the output into a list.
-
final
def
collectAllN(i: Int): ZSink[R, E, A, A, List[B]]
Accumulates the output into a list of maximum size
i. -
final
def
collectAllWhile(p: (A) ⇒ Boolean): ZSink[R, E, A, A, List[B]]
Accumulates into a list for as long as incoming values verify predicate
p. -
final
def
collectAllWhileWith[S](p: (A) ⇒ Boolean)(z: S)(f: (S, B) ⇒ S): ZSink[R, E, A, A, S]
Accumulates into a value of type
Sfor as long as incoming values verify predicatep. -
final
def
collectAllWith[S](z: S)(f: (S, B) ⇒ S): ZSink[R, E, A, A, S]
Accumulates the output into a value of type
S. -
final
def
collectUntil[S](z: S)(p: (S) ⇒ Boolean)(f: (S, B) ⇒ S): ZSink[R, E, A, A, S]
Accumulates into a value of type
Sfor as long as the state satisfies the predicatep. -
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
optional: ZSink[R, E, A, A, Option[B]]
A named alias for
?. - val sink: ZSink[R, E, Nothing, A, B]
-
def
toString(): String
- Definition Classes
- Any