I have a "Set" that I need to use the findAll closure upon. The Set contains objects, not just primitive values. For instance... I have a Set of Employee objects and I need to iterate and grab elements of that Set of Empolyee Objects by attributes of the Employee.
For some reason the findAll closure seems to be just ignore my close and returns an empty set.
Here is my syntax;
dstCollection = srcCollection.findAll{
it.age == 22
}
Any help would be most appreciate.
Thanks.