Denis Koroskin Wrote: > That was just an example. Those short lambdas are often used as predicates. Compare: > > findAll(array, (i) { i > 3; }); > findAll(array, (int i) { return i > 3; }); > well... you pwnd me :)