Skip to content

Instantly share code, notes, and snippets.

@liviutudor
Created April 1, 2017 00:50
Embed
What would you like to do?
`Map` on java streams
public Collection<Double> extract(Collection<Employee> collection) {
return collection.stream().map(c -> c.salary).collect(Collectors.toList());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment