Result:
found 31 distributions and 90 files matching your query ! ( run in 0.250 )


perl

 view release on metacpan or  search on metacpan

lib/feature.pm  view on Meta::CPAN

        print "But not here.\n";
    }
    say "Yet it is here.";

C<no feature> with no features specified will reset to the default group.  To
disable I<all> features (an unusual request!) use C<no feature ':all'>.

=head1 AVAILABLE FEATURES

Read L</"FEATURE BUNDLES"> for the feature cheat sheet summary.

lib/feature.pm  view on Meta::CPAN


  use feature ":all";

or

  no feature ":all";

but the first may enable features in a later version of Perl that
change the meaning of your code, and the second may disable mechanisms
that are part of Perl's current behavior that have been turned into
features, just as C<indirect> and C<bareword_filehandles> were.

lib/feature.pm  view on Meta::CPAN


    use v5.36.0;

will do an implicit

    no feature ':all';
    use feature ':5.36';

and so on.  Note how the trailing sub-version
is automatically stripped from the
version.

 view all matches for this distribution


( run in 0.250 second using v1.01-cache-2.11-cpan-cba739cd03b )