You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why wouldn't you just use more standard, mathematical expressions for in-range comparisons?
in_range = min_exclusive < x < max_exclusive
in_range = min_inclusive <= x < max_exclusive
in_range = min_exclusive < x <= max_inclusive
in_range = min_inclusive <= x <= max_inclusive
http://perlgeek.de/blog-en/perl-5-to-6/27-common-idioms.html#Numbers
<?
for min,>?
for max (or inverse?)The text was updated successfully, but these errors were encountered: