FILE: C:\Program Files (x86)\Plesk\perl\lib\builtin.pm
--
package builtin 0.014;
use strict;
use warnings;
# All code, including &import, is implemented by always-present
# functions in the perl interpreter itself.
# See also `builtin.c` in perl source
1;
__END__
=head1 NAME
builtin - Perl pragma to import built-in utility functions
=head1 SYNOPSIS
use builtin qw(
true false is_bool
inf nan
weaken unweaken is_weak
blessed refaddr reftype
created_as_string created_as_number
stringify
ceil floor
indexed
trim
is_tainted
export_lexically
load_module
);
use builtin ':5.40'; # most of the above
=head1 DESCRIPTION
Perl provides several utility functions in the C package. These are
plain functions, and look and behave just like regular user-defined functions
do. They do not provide new syntax or require special parsing. These functions
are always present in the interpreter and can be called at any time by their
fully-qualified names. By default they are not available as short names, but
can be requested for convenience.
Individual named functions can be imported by listing them as import
parameters on the C