https://github.com/dnmfarrell/perl-builtins
https://github.com/dnmfarrell/perl-builtins
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dnmfarrell/perl-builtins
- Owner: dnmfarrell
- License: other
- Created: 2014-10-26T18:38:22.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-10-19T23:43:26.000Z (over 9 years ago)
- Last Synced: 2025-03-06T05:43:35.944Z (over 1 year ago)
- Language: Perl
- Size: 14.6 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.pod
- Changelog: Changes
- License: LICENSE
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
=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
