Skip to content

Instantly share code, notes, and snippets.

@alexlarkou
Last active November 19, 2018 16:15
Show Gist options
  • Save alexlarkou/f821e53d6f7ee7c8f121bdb2239007db to your computer and use it in GitHub Desktop.
Save alexlarkou/f821e53d6f7ee7c8f121bdb2239007db to your computer and use it in GitHub Desktop.
// C#
IEnumerable<string> schoolNames = schools.Select(s => s.get_name());
// Java
Stream<String> schoolNames = schools.map(s -> s.get_name());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment