1PPIx::Regexp::Token::OpUesreartoCro(n3t)ributed Perl DocPuPmIexn:t:aRteigoenxp::Token::Operator(3)
2
3
4

NAME

6       PPIx::Regexp::Token::Operator - Represent an operator.
7

SYNOPSIS

9        use PPIx::Regexp::Dumper;
10        PPIx::Regexp::Dumper->new( 'qr{foo|bar}smx' )
11            ->print();
12

INHERITANCE

14       "PPIx::Regexp::Token::Operator" is a PPIx::Regexp::Token.
15
16       "PPIx::Regexp::Token::Operator" has no descendants.
17

DESCRIPTION

19       This class represents an operator. In a character class, it represents
20       the negation ("^") and range ("-") operators. Outside a character
21       class, it represents the alternation ("|") operator.
22

METHODS

24       This class provides no public methods beyond those provided by its
25       superclass.
26
27   operation
28       This method returns the name of the operation performed by the
29       operator.  This depends not only on the operator itself but its
30       context:
31
32       In a bracketed character class
33               '-' => 'range',
34               '^' => 'inversion',
35
36       In an extended bracketed character class
37               '&' => 'intersection',
38               '+' => 'union',
39               '|' => 'union',
40               '-' => 'subtraction',
41               '^' => 'symmetric_difference',
42               '!' => 'complement',
43
44       Outside any sort of bracketed character class
45               '|' => 'alternation',
46

SUPPORT

48       Support is by the author. Please file bug reports at
49       <https://rt.cpan.org>, or in electronic mail to the author.
50

AUTHOR

52       Thomas R. Wyant, III wyant at cpan dot org
53
55       Copyright (C) 2009-2020 by Thomas R. Wyant, III
56
57       This program is free software; you can redistribute it and/or modify it
58       under the same terms as Perl 5.10.0. For more details, see the full
59       text of the licenses in the directory LICENSES.
60
61       This program is distributed in the hope that it will be useful, but
62       without any warranty; without even the implied warranty of
63       merchantability or fitness for a particular purpose.
64
65
66
67perl v5.32.0                      2020-07-29  PPIx::Regexp::Token::Operator(3)
Impressum