Group
Extension

Matches 2

Lingua-EN-Inflexion ( D/DC/DCONWAY/Lingua-EN-Inflexion-0.002009.tar.gz, DCONWAY, 2024; MetaCPAN )
Lingua-EN-Inflexion/lib/Lingua/EN/Inflexion.pm ( view source; MetaCPAN )
turns true if any one pair of
inflexions matches (case-insensitively).

That is:

    noun($word1) ~~ noun($word2)

is just a shorthand for:

       lc(noun($word1)->singular)          eq lc(noun($wor
 is then smartmatched
against the other argument.

That is:

    $something_else ~~ noun($word1)
       noun($word1) ~~ $something_else

are just slightly shorter (and less order-specific) ways of wri
 ~~ noun($word2)         # (ditto)

    noun($word1) =~ $word2         # $word1 matches $word2 exactly

    noun($word1) ~~ $word2         # any inflexion of $word1 matches $word2

    noun($word1) ~~
Lingua-EN-Inflexion ( D/DC/DCONWAY/Lingua-EN-Inflexion-0.002009.tar.gz, DCONWAY, 2024; MetaCPAN )
Lingua-EN-Inflexion/lib/Lingua/EN/Inflexion/Term.pm ( view source; MetaCPAN )
ref(shift), ' object to typeglob reference'; },

    q[~~] => sub {
                my ($term, $other_arg) = @_;

                # Handle TERM ~~ TERM...
                if (blessed($other_arg) && $o

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.