Skip to content

Instantly share code, notes, and snippets.

@alexlarkou
Created November 19, 2018 16:13
Show Gist options
  • Save alexlarkou/ffb4233b763a1238802aed5b14645e19 to your computer and use it in GitHub Desktop.
Save alexlarkou/ffb4233b763a1238802aed5b14645e19 to your computer and use it in GitHub Desktop.
// c#
bool doesThisStudentExist = studentsInAllSchools.Any(s => s.get_name() == "Alex");
// java
boolean doesThisStudentExist = studentsInAllSchools.anyMatch(s -> s.get_name() == "Alex");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment