I was wondering what the reasoning was behind DRLs requiring syntax like
this:

Person(sex == "f", age == 60) ||
Person(sex == "f", age == 70) ||
Person(sex == "f", age == 80)

instead of like this:

Person(sex == "f", age == 60 || age == 70 || age == 80)

or even like this:

Person(sex == "f", age IN ( 60, 70, 80 ))

-- 
Christopher G. Stach II

Reply via email to