logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

PPIx::Regexp::Token::Assertion - Represent a simple assertion.

Author

       Thomas R. Wyant, III wyantatcpandotorg

Description

       This class represents one of the simple assertions; that is, those that are not defined via parentheses.
       This includes the zero-width assertions "^", "$", "\b", "\B", "\A", "\Z", "\z" and "\G", as well as:

       •   The "\z" assertion added in Perl 5.005,

       •   The "\K" assertion added in Perl 5.009005,

       •   The  "\b{gcb}"  assertion  (and  friends) added in Perl 5.021009.  Similar braced constructions (like
           "\b{foo}") are unknown tokens.

Inheritance

       "PPIx::Regexp::Token::Assertion" is a PPIx::Regexp::Token.

       "PPIx::Regexp::Token::Assertion" has no descendants.

Methods

       This class provides no public methods beyond those provided by its superclass.

   is_matcher
       This method returns a true value because an assertion actually matches something.

Name

       PPIx::Regexp::Token::Assertion - Represent a simple assertion.

Support

       Support      is       by       the       author.       Please       file       bug       reports       at
       <https://rt.cpan.org/Public/Dist/Display.html?Name=PPIx-Regexp>,
       <https://github.com/trwyant/perl-PPIx-Regexp/issues>, or in electronic mail to the author.

Synopsis

        use PPIx::Regexp::Dumper;
        PPIx::Regexp::Dumper->new( 'qr{\bfoo\b}smx' )
            ->print();

See Also