Skip to content

Instantly share code, notes, and snippets.

@alexlarkou
Last active November 19, 2018 16:14
Show Gist options
  • Save alexlarkou/8e4802706eefd2f9343b91254477e40f to your computer and use it in GitHub Desktop.
Save alexlarkou/8e4802706eefd2f9343b91254477e40f to your computer and use it in GitHub Desktop.
// c#
IEnumerable<Student> studentsInAllSchools = schools.SelectMany(s => s.get_students());
// java
Stream<Student> studentsInAllSchools = schools.flatMap(s -> s.get_students());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment