The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
=pod

=for comment
DO NOT EDIT. This Pod was generated by Swim.
See http://github.com/ingydotnet/swim-pm#readme

=encoding utf8

=head1 NAME

Pegex::Grammar::Atoms - Pegex Regex Atoms

=head1 SYNOPSIS

    use Pegex::Grammar::Atoms;

=head1 DESCRIPTION

Atoms are special Pegex rules that represent the small pieces of text that you
can use to build up regular expressions. Usually they are one or two
characters.

It may seem like a waste of time to specify C<COLON> in a regex, instead of a
simple C<:>. There are three reasons this is encouraged. First is that you are
defining a grammar for a new language, and it is worth the time to be clear
and verbose. Second, using an abstraction like this can help with portability
to languages with different regex engines. Finally, it makes the grammar for
Pegex so much simpler, because a C</> is always a part of the Pegex syntax,
and a C<SLASH> is part of your grammar.

=head1 AUTHOR

Ingy döt Net <ingy@cpan.org>

=head1 COPYRIGHT AND LICENSE

Copyright (c) 2011, 2012, 2013, 2014. Ingy döt Net.

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

See L<http://www.perl.com/perl/misc/Artistic.html>

=cut