I\'m looking for the cleanest way to filter a list in Java-8, with a simple lambda Predicate, without creating a new list.
Predicate
In particular, t
beerDrinkers.removeIf(p -> p.getAge() <= 16);