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>. I will be
50 notified, and then you'll automatically be notified of progress on your
51 bug as I make changes.
52
54 You can find documentation for this module with the perldoc command.
55
56 perldoc B::Keywords
57
58 You can also look for information at:
59
60 · RT: CPAN's request tracker
61
62 <http://rt.cpan.org/NoAuth/Bugs.html?Dist=B-Keywords>
63
64 · AnnoCPAN: Annotated CPAN documentation
65
66 <http://annocpan.org/dist/B-Keywords>
67
68 · CPAN Ratings
69
70 <http://cpanratings.perl.org/d/B-Keywords>
71
72 · Search CPAN
73
74 <http://search.cpan.org/dist/B-Keywords>
75
77 Michael G Schwern for patches
78
80 Copyright 2009 Joshua ben Jore, All rights reserved.
81
82 This program is free software; you can redistribute it and/or modify it
83 under the terms of either:
84
85 a) the GNU General Public License as published by the Free Software
86 Foundation; version 2, or
87
88 b) the "Artistic License" which comes with Perl.
89
91 This source is in Github: <git://github.com/jbenjore/b-keywords.git>
92
94 Joshua ben Jore <jjore@cpan.org>
95
96
97
98perl v5.10.1 2009-03-09 B::Keywords(3)