Hi All,

Just a quick question from an optimisation point of view:

Approach 1:
.filter (t-> t.x=1 && t.y=2)

Approach 2:
.filter (t-> t.x=1)
.filter (t-> t.y=2)

Is there a difference or one is better than the other  or both are same?

Thanks!
Ahmed Mahmoud

Reply via email to