Is there such a thing? The equivalent of a <= expr <= b, or in SQL parlance expr BETWEEN a AND b, where expr is evaluated only once? Or is asking for this just getting silly?
|
|
|
|||
|
|
|
|
There are a variety of ways to do that in Perl.
|
||||||||||||||||||||
|
|
|
you could use
|
|||
|
|
|
In Perl6, the comparison operators are chainable. http://perlcabal.org/syn/S03.html#Chained_comparisons:
|
|||
|
|
|
|
I do not think they correspond exactly, but take a look at the Range Operators. |
|||
|
|
|
|
I think this is your only bet.
|
||
