NAME
Perl::Builtins - A list of all Perl 5 built functions
VERSION
version 0.04
SYNOPSIS
use Perl::Builtins;
# get an array of functions
my @builtin_functions = Perl::Builtins::list;
# get an arrayref instead
my $builtin_functions = Per::Builts::list;
DESCRIPTION
This module simply returns a list of strings of all the builtin functions in Perl. In scalar context it returns an arrayref.
RATIONALE
I wrote this module because several times I have needed a list of all builtin functions in Perl, and couldn't find an easy way to get it. Then Father Chrysostomos pointed me towards B::Keywords. You should probably use that.
SEE ALSO
CONTRIBUTORS
John D Jones III, Father Chrysostomos
AUTHOR
David Farrell <dfarrell@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by David Farrell.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.