show/hide this revision's text 2 formatting

lambdaj allows to filter collections without writing loops or inner classes as in the following example:

List<Person> beerDrinkers = select(persons, having(on(Person.class).getAge(),
    greaterThan(16)));

Can you imagine something more readable? You can find it here:

http://code.google.com/p/lambdaj/

show/hide this revision's text 1

lambdaj allows to filter collections without writing loops or inner classes as in the following example:

List beerDrinkers = select(persons, having(on(Person.class).getAge(), greaterThan(16)));

Can you imagine something more readable? You can find it here:

http://code.google.com/p/lambdaj/