in reply to Which are perl-internal subroutines?
I compiled a list once. This changes over time of course. You won't be able to expect to write a list once and then not update it as new things show up on CPAN or as perl changes.
# A dictionary of stuff that can show up in UNIVERSAL. our @UNIVERSAL_METHODS = ( # core perl qw( isa can VERSION ), # core perl 5.9.4+ 'DOES', # UNIVERSAL.pm 'import', # UNIVERSAL/require.pm qw( require use ), # UNIVERSAL/dump.pm qw( blessed dump peek refaddr ), # UNIVERSAL/exports.pm 'exports', # UNIVERSAL/moniker.pm qw( moniker plural_moniker ), # UNIVERSAL/which.pm 'which', # SUPER.pm qw( super SUPER ), );
⠤⠤ ⠙⠊⠕⠞⠁⠇⠑⠧⠊
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Which are perl-internal subroutines?
by Tobiwan (Beadle) on Nov 19, 2007 at 06:57 UTC | |
|
Re^2: Which are perl-internal subroutines?
by Tobiwan (Beadle) on Nov 19, 2007 at 23:46 UTC | |
by diotalevi (Canon) on Nov 20, 2007 at 00:18 UTC | |
by Tobiwan (Beadle) on Nov 20, 2007 at 14:35 UTC | |
by ikegami (Patriarch) on Nov 20, 2007 at 20:06 UTC |