An open API service indexing awesome lists of open source software.

https://github.com/dnmfarrell/perl-builtins


https://github.com/dnmfarrell/perl-builtins

Last synced: 8 days ago
JSON representation

Awesome Lists containing this project

README

          

=pod

=encoding UTF-8

=head1 NAME

Perl::Builtins - A list of all Perl 5 built functions

=head1 VERSION

version 0.04

=for HTML
Coverage Status

=head2 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;

=head2 DESCRIPTION

This module simply returns a list of strings of all the builtin functions in Perl. In scalar context it returns an arrayref.

=head2 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 L. You should probably use that.

=head2 SEE ALSO

L

=head2 CONTRIBUTORS

John D Jones III, Father Chrysostomos

=head1 AUTHOR

David Farrell

=head1 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.

=cut