vote up 0 vote down star

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?

flag

5 Answers

vote up 12 vote down check

There are a variety of ways to do that in Perl.

if( $a < $x and $x < $b ){ ... }
... if $a < $x and $x < $b;
use 5.10.1;
if( $x ~~ [$a..$b] ){ ... }

given( $x ){
  when( [$a..$b] ){ ... }
}
use 5.11.0; # development branch
given( $x ){
  ... when [$a..$b];
}
link|flag
4  
That's a nice use of smart match, and very readable! – Ether Nov 6 at 22:37
1  
+1 I learn something new every day. – Sinan Ünür Nov 6 at 23:03
1  
Does this work the way you want? I only have 5.10.0 available right now, but the 5.10.1 and 5.11.x manuals don't mention any change for smart matching range operators, and the SCALAR ~~ ARRAY semantics will only work out if you have integers. Now if this were Perl 6, where ranges are their own type... – hobbs Nov 6 at 23:33
3  
Failing test: ok( 2.5 ~~ [1.3 .. 3.3] ) etc. – hobbs Nov 6 at 23:34
3  
The latter cases are actually more like $a <= $x <= $b, and you would have to make sure that $x is an integer. – Brad Gilbert Nov 6 at 23:55
show 1 more comment
vote up 4 vote down

you could use Range operator + smart macthing:

if($expr ~~ [$a..$b])
link|flag
if( $expr ~~ [a..b] ){ ... } – Brad Gilbert Nov 6 at 22:16
vote up 2 vote down

In Perl6, the comparison operators are chainable.

http://perlcabal.org/syn/S03.html#Chained_comparisons:

Perl 6 supports the natural extension to the comparison operators, allowing multiple operands:

if 1 < $a < 100 { say "Good, you picked a number *between* 1 and 100." }
if 3 < $roll <= 6              { print "High roll" }
if 1 <= $roll1 == $roll2 <= 6  { print "Doubles!" }
link|flag
vote up 1 vote down

I do not think they correspond exactly, but take a look at the Range Operators.

link|flag
vote up -1 vote down

I think this is your only bet.

$x = expr;

if ($a < $x && $x < $b) {
  # stuff
}
link|flag
4  
Tempted to -1 for saying "only one way to do it" – mobrule Nov 6 at 21:49
2  
So far, this is the only answer that's correct for things other than integers. – jrockway Nov 7 at 13:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.