1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
NAME
Syntax::Operator::Equ - equality operators that distinguish undef
SYNOPSIS
On Perl v5.38 or later:
use v5.38;
use Syntax::Operator::Equ;
if($x equ $y) {
say "x and y are both undef, or both defined and equal strings";
}
if($i === $j) {
say "i and j are both undef, or both defined and equal numbers";
}
Or via Syntax::Keyword::Match on Perl v5.14 or later:
use v5.14;
use Syntax::Keyword::Match;
use Syntax::Operator::Equ;
match($str : equ) {
case(undef) { say "The variable is not defined" }
case("") { say "The variable is defined but is empty" }
default { say "The string is non-empty" }
}
DESCRIPTION
This module provides infix operators that implement equality tests of
strings or numbers similar to perl's eq and == operators, except that
they consider undef to be a distinct value, separate from the empty
string or the number zero.
These operators do not warn when either or both operands are undef.
They yield true if both operands are undef, false if exactly one
operand is, or otherwise behave the same as the regular string or
number equality tests if both operands are defined.
Support for custom infix operators was added in the Perl 5.37.x
development cycle and is available from development release v5.37.7
onwards, and therefore in Perl v5.38 onwards. The documentation of
XS::Parse::Infix describes the situation in more detail.
While Perl versions before this do not support custom infix operators,
they can still be used via XS::Parse::Infix and hence
XS::Parse::Keyword. Custom keywords which attempt to parse operator
syntax may be able to use these. One such module is
Syntax::Keyword::Match; see the SYNOPSIS example given above.
OPERATORS
equ
my $equal = $lhs equ $rhs;
Yields true if both operands are undef, or if both are defined and
contain equal string values. Yields false if given exactly one undef,
or two unequal strings.
===
my $equal = $lhs === $rhs;
Yields true if both operands are undef, or if both are defined and
contain equal numerical values. Yields false if given exactly one
undef, or two unequal numbers.
Note that while this operator will not cause warnings about
uninitialized values, it can still warn if given defined stringy values
that are not valid as numbers.
FUNCTIONS
As a convenience, the following functions may be imported which
implement the same behaviour as the infix operators, though are
accessed via regular function call syntax.
These wrapper functions are implemented using XS::Parse::Infix, and
thus have an optimising call-checker attached to them. In most cases,
code which calls them should not in fact have the full runtime overhead
of a function call because the underlying test operator will get
inlined into the calling code at compiletime. In effect, code calling
these functions should run with the same performance as code using the
infix operators directly.
is_strequ
my $equal = is_strequ( $lhs, $rhs );
A function version of the "equ" stringy operator.
is_numequ
my $equal = is_numequ( $lhs, $rgh );
A function version of the "===" numerical operator.
SEE ALSO
* Syntax::Operator::Eqr - string equality and regexp match operator
AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
|