Start anew
[git/jnareb-git.git] / lib / perl5 / 5.6.1 / UNIVERSAL.pm
blobf2f1fe9e7adeba41686210e68fadf3ac6b9a46c9
1 package UNIVERSAL;
3 # UNIVERSAL should not contain any extra subs/methods beyond those
4 # that it exists to define. The use of Exporter below is a historical
5 # accident that should be fixed sometime.
6 require Exporter;
7 *import = \&Exporter::import;
8 @EXPORT_OK = qw(isa can);
11 __END__
13 =head1 NAME
15 UNIVERSAL - base class for ALL classes (blessed references)
17 =head1 SYNOPSIS
19 $io = $fd->isa("IO::Handle");
20 $sub = $obj->can('print');
22 $yes = UNIVERSAL::isa($ref, "HASH");
24 =head1 DESCRIPTION
26 C<UNIVERSAL> is the base class which all bless references will inherit from,
27 see L<perlobj>
29 C<UNIVERSAL> provides the following methods
31 =over 4
33 =item isa ( TYPE )
35 C<isa> returns I<true> if C<REF> is blessed into package C<TYPE>
36 or inherits from package C<TYPE>.
38 C<isa> can be called as either a static or object method call.
40 =item can ( METHOD )
42 C<can> checks if the object has a method called C<METHOD>. If it does
43 then a reference to the sub is returned. If it does not then I<undef>
44 is returned.
46 C<can> can be called as either a static or object method call.
48 =item VERSION ( [ REQUIRE ] )
50 C<VERSION> will return the value of the variable C<$VERSION> in the
51 package the object is blessed into. If C<REQUIRE> is given then
52 it will do a comparison and die if the package version is not
53 greater than or equal to C<REQUIRE>.
55 C<VERSION> can be called as either a static or object method call.
57 =back
59 The C<isa> and C<can> methods can also be called as subroutines
61 =over 4
63 =item UNIVERSAL::isa ( VAL, TYPE )
65 C<isa> returns I<true> if one of the following statements is true.
67 =over 8
69 =item *
71 C<VAL> is a reference blessed into either package C<TYPE> or a package
72 which inherits from package C<TYPE>.
74 =item *
76 C<VAL> is a reference to a C<TYPE> of Perl variable (e.g. 'HASH').
78 =item *
80 C<VAL> is the name of a package that inherits from (or is itself)
81 package C<TYPE>.
83 =back
85 =item UNIVERSAL::can ( VAL, METHOD )
87 If C<VAL> is a blessed reference which has a method called C<METHOD>,
88 C<can> returns a reference to the subroutine. If C<VAL> is not
89 a blessed reference, or if it does not have a method C<METHOD>,
90 I<undef> is returned.
92 =back
94 These subroutines should I<not> be imported via S<C<use UNIVERSAL qw(...)>>.
95 If you want simple local access to them you can do
97 *isa = \&UNIVERSAL::isa;
99 to import isa into your package.
101 =cut