For example I want to filter object by some field values. I can write
objects.filter{ o =>
val set = Set(c1,c2)
set contains o.field
}
in that case I will create hashset each time method called ==> it will be slow
I also can write this way
val set = Set(c1,c2)
objects.filter{ o =>
set contains o.field
}
It will work fast but I pollute my space with meaningless object set.
What is the best way to do this?