Skip to content

unixify

Mahmoud Ben Hassine edited this page Nov 8, 2015 · 4 revisions

unixify

Synopsis

Create a UnixStream from the given stream.

Example

Stream<String> stream = Stream.of("a", "b");
UnixStream.unixify(stream)
       .to(stdOut()); //prints "a", "b"