__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# $Id: Boolean.pm,v 1.7 2000/07/03 08:54:47 matt Exp $
package XML::XPathEngine::Boolean;
use XML::XPathEngine::Number;
use XML::XPathEngine::Literal;
use strict;
use overload
'""' => \&value,
'<=>' => \&cmp;
sub True {
my $class = shift;
my $val = 1;
bless \$val, $class;
}
sub False {
my $class = shift;
my $val = 0;
bless \$val, $class;
}
sub value {
my $self = shift;
$$self;
}
sub cmp {
my $self = shift;
my ($other, $swap) = @_;
if ($swap) {
return $other <=> $$self;
}
return $$self <=> $other;
}
sub to_number { XML::XPathEngine::Number->new($_[0]->value); }
sub to_boolean { $_[0]; }
sub to_literal { XML::XPathEngine::Literal->new($_[0]->value ? "true" : "false"); }
sub string_value { return $_[0]->to_literal->value; }
sub getChildNodes { return wantarray ? () : []; }
sub getAttributes { return wantarray ? () : []; }
1;
__END__
=head1 NAME
XML::XPathEngine::Boolean - Boolean true/false values
=head1 DESCRIPTION
XML::XPathEngine::Boolean objects implement simple boolean true/false objects.
=head1 API
=head2 XML::XPathEngine::Boolean->True
Creates a new Boolean object with a true value.
=head2 XML::XPathEngine::Boolean->False
Creates a new Boolean object with a false value.
=head2 value()
Returns true or false.
=head2 to_literal()
Returns the string "true" or "false".
=cut
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Boolean.pm | File | 1.31 KB | 0644 |
|
| Expr.pm | File | 19.61 KB | 0644 |
|
| Function.pm | File | 10.8 KB | 0644 |
|
| Literal.pm | File | 2.17 KB | 0644 |
|
| LocationPath.pm | File | 1.1 KB | 0644 |
|
| NodeSet.pm | File | 4.06 KB | 0644 |
|
| Number.pm | File | 1.76 KB | 0644 |
|
| Root.pm | File | 634 B | 0644 |
|
| Step.pm | File | 14.17 KB | 0644 |
|
| Variable.pm | File | 850 B | 0644 |
|