-
Notifications
You must be signed in to change notification settings - Fork 15
cat
Mahmoud Ben Hassine edited this page Nov 8, 2015
·
9 revisions
Create a UnixStream from the standard input or a file.
// create an infinite UnixStream from the standard input
UnixStream<String> stdin = UnixStream.cat();
// create a UnixStream of lines from the file named "input.txt"
UnixStream<String> lines = UnixStream.cat("input.txt");
UnixStream is created with passion by Mahmoud Ben Hassine