Skip to content

unixify

Mahmoud Ben Hassine edited this page Oct 13, 2015 · 4 revisions

unixify

Synopsis

Create a UStream from the given stream.

Example

Stream<String> stream = Stream.of("a", "b");
UStream.unixify(stream)
       .to(stdOut()); //prints "a", "b"
Clone this wiki locally