Sink
Companion for Sink.
- Deprecated
Value members
Deprecated methods
Lifts a function I => F[Unit]
to Sink[F,I]
.
Lifts a function I => F[Unit]
to Sink[F,I]
.
- Deprecated
Sink that routes each element to one of two sinks.
Left
values get sent to the left
sink, and likewise for Right
Sink that routes each element to one of two sinks.
Left
values get sent to the left
sink, and likewise for Right
If either of left
or right
fails, then resulting stream will fail.
If either halts
the evaluation will halt too.
- Deprecated
Sink that prints each string from the source to the supplied PrintStream
.
Sink that prints each string from the source to the supplied PrintStream
.
- Deprecated
Sink that prints each element from the source to the supplied PrintStream
using the Show
instance for the input type.
Sink that prints each element from the source to the supplied PrintStream
using the Show
instance for the input type.
- Deprecated