Hi,
I'd like to declare a numerical set like this [2, 10] which basically reads all numbers from 2 and 10. Basically I want to avoid using this || in if statement:
if(i > 2 || i < 10) ... is there a way to do something like (if i belongs to set [2, 10])?
thanks,
ruslan

