1B::Keywords(3) User Contributed Perl Documentation B::Keywords(3)
2
3
4
6 B::Keywords - Lists of reserved barewords and symbol names
7
9 use B::Keywords qw( @Symbols Barewords );
10 print join "\n", @Symbols,
11 @Barewords;
12
14 "B::Keywords" supplies seven arrays of keywords: @Scalars, @Arrays,
15 @Hashes, @Filehandles, @Symbols, @Functions, and @Barewords. The
16 @Symbols array includes the contents of each of @Scalars, @Arrays,
17 @Hashes, @Functions and @Filehandles. Similarly, @Barewords adds a few
18 non-function keywords and operators to the @Functions array.
19
20 All additions and modifications are welcome.
21
23 @Scalars
24 @Arrays
25 @Hashes
26 @Filehandles
27 @Functions
28 The above are lists of variables, special file handles, and built
29 in functions.
30
31 @Symbols
32 This is just the combination of all of the above: variables, file
33 handles, and functions.
34
35 @Barewords
36 This is a list of other special keywords in perl including
37 operators and all the control structures.
38
40 Anything can be exported if you desire. Use the :all tag to get
41 everything.
42
44 keywords.pl from the perl source, perlvar, perlfunc, perldelta.
45
47 Please report any bugs or feature requests to "bug-B-Keywords at
48 rt.cpan.org", or through the web interface at
49 http://rt.cpan.org/NoAuth/ReportBug.html?Queue=B-Keywords
50 <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=B-Keywords>. I will be
51 notified, and then you'll automatically be notified of progress on your
52 bug as I make changes.
53
55 You can find documentation for this module with the perldoc command.
56
57 perldoc B::Keywords
58
59 You can also look for information at:
60
61 · RT: CPAN's request tracker
62
63 http://rt.cpan.org/NoAuth/Bugs.html?Dist=B-Keywords
64 <http://rt.cpan.org/NoAuth/Bugs.html?Dist=B-Keywords>
65
66 · AnnoCPAN: Annotated CPAN documentation
67
68 http://annocpan.org/dist/B-Keywords <http://annocpan.org/dist/B-
69 Keywords>
70
71 · CPAN Ratings
72
73 http://cpanratings.perl.org/d/B-Keywords
74 <http://cpanratings.perl.org/d/B-Keywords>
75
76 · Search CPAN
77
78 http://search.cpan.org/dist/B-Keywords
79 <http://search.cpan.org/dist/B-Keywords>
80
82 Michael G Schwern for patches
83
85 Copyright 2009 Joshua ben Jore, All rights reserved.
86
87 This program is free software; you can redistribute it and/or modify it
88 under the terms of either:
89
90 a) the GNU General Public License as published by the Free Software
91 Foundation; version 2, or
92
93 b) the "Artistic License" which comes with Perl.
94
96 This source is in Github: git://github.com/jbenjore/b-keywords.git
97 <git://github.com/jbenjore/b-keywords.git>
98
100 Joshua ben Jore <jjore@cpan.org>
101
102
103
104perl v5.12.0 2009-03-09 B::Keywords(3)