Skip to content

Instantly share code, notes, and snippets.

@wsoczynski
Last active December 15, 2015 01:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wsoczynski/5177971 to your computer and use it in GitHub Desktop.
Save wsoczynski/5177971 to your computer and use it in GitHub Desktop.
public class FluentIterableExample {
public static void main(String... args){
List<String> input = newArayList();
FluentIterable<String> iterable = FluentIterable.from(input);
//the rest of processing
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment