Skip to content

Instantly share code, notes, and snippets.

@alexlarkou
Created November 19, 2018 16:16
Show Gist options
  • Save alexlarkou/b974d04ae82f6ecb909cca5f63204221 to your computer and use it in GitHub Desktop.
Save alexlarkou/b974d04ae82f6ecb909cca5f63204221 to your computer and use it in GitHub Desktop.
// c#
bool doAllStudentsExceed100cmInHeight = studentsInAllSchools.All(s => s.get_height() > 100);
// java
boolean doAllStudentsExceed100cmInHeight = studentsInAllSchools.allMatch(s -> s.get_height() > 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment