Skip to content

Instantly share code, notes, and snippets.

@alexlarkou
Last active November 19, 2018 16:19
Show Gist options
  • Save alexlarkou/08bb4fbe07cf5015a2db6872d1910af6 to your computer and use it in GitHub Desktop.
Save alexlarkou/08bb4fbe07cf5015a2db6872d1910af6 to your computer and use it in GitHub Desktop.
// c#
IEnumerable<Student> studentsInFirstYear = studentsInAllSchools.Where(s => s.get_year() == 1);
// java
Stream<Student> studentsInFirstYear = studentsInAllSchools.filter(s -> s.get_year() == 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment