App-perlfind

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN


2.00  2012-01-29 21:24:15 Europe/Vienna
    - bump version number to keep indexer happy

1.20  2012-01-29 17:36:14 Europe/Vienna
    - converted to Makefile.PL style
    - added special casing and quoting escape sequences found in
      perlop (\Q, \E etc.)

1.111500  2011-05-30 14:06:18 Europe/Vienna
    - Add UNITCHECK - and also move BEGIN CHECK INIT END to perlmod as docs are
      clearer there (thanks ranguard)

1.111470  2011-05-27 18:14:50 Europe/Vienna
    - extract find_matches() so it can be accessed directly (thanks
      ranguard)

1.101610  2010-06-10 21:50:18 Europe/Vienna
    - applied perltidy
    - added dry-run tests

README  view on Meta::CPAN

        perlfind AUTOLOAD
        perlfind TIEARRAY
        perlfind INPUT_RECORD_SEPARATOR
        perlfind '$^F'
        perlfind '\Q'
        perlfind PERL5OPT
        perlfind :mmap
        perlfind __WARN__
        perlfind __PACKAGE__
        perlfind head4
        perlfind UNITCHECK

    If perlfind doesn't know about a search term, it will delegate the
    search to Pod::Cpandoc and ultimately Pod::Perldoc.

FUNCTIONS

 find_matches

    Takes a word and returns the matches for that word. It's in a separate
    function to separate logic from presentation so other programs can use

lib/App/perlfind.pm  view on Meta::CPAN

    perlfind AUTOLOAD
    perlfind TIEARRAY
    perlfind INPUT_RECORD_SEPARATOR
    perlfind '$^F'
    perlfind '\Q'
    perlfind PERL5OPT
    perlfind :mmap
    perlfind __WARN__
    perlfind __PACKAGE__
    perlfind head4
    perlfind UNITCHECK

If C<perlfind> doesn't know about a search term, it will delegate the
search to L<Pod::Cpandoc> and ultimately C<Pod::Perldoc>.

=head1 FUNCTIONS

=head2 find_matches

Takes a word and returns the matches for that word. It's in a separate
function to separate logic from presentation so other programs can use

lib/App/perlfind/Plugin/FoundIn.pm  view on Meta::CPAN

# Note: 'for' is a keyword for perlpod as well ('=for'), but is listed for
# perlsyn here, as that's more likely to be the intended meaning.
our %found_in = (
    perlop => [
        qw(lt gt le ge eq ne cmp not and or xor
          q qq qr qx qw \l \u \L \U \Q \E)
    ],
    perlsyn => [qw(if else elsif unless while until for foreach)],
    perlobj => [qw(isa ISA can VERSION)],
    perlsub => [qw(AUTOLOAD DESTROY)],
    perlmod => [qw(BEGIN UNITCHECK CHECK INIT END)],
    perltie => [
        qw(TIESCALAR TIEARRAY TIEHASH TIEHANDLE FETCH STORE UNTIE
          FETCHSIZE STORESIZE POP PUSH SHIFT UNSHIFT SPLICE DELETE EXISTS
          EXTEND CLEAR FIRSTKEY NEXTKEY WRITE PRINT PRINTF READ READLINE GETC
          CLOSE)
    ],
    perlrun => [
        qw(HOME LOGDIR PATH PERL5LIB PERL5OPT PERLIO PERLIO_DEBUG PERLLIB
          PERL5DB PERL5DB_THREADED PERL5SHELL PERL_ALLOW_NON_IFS_LSP
          PERL_DEBUG_MSTATS PERL_DESTRUCT_LEVEL PERL_DL_NONLAZY PERL_ENCODING

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.048 second using v1.00-cache-2.02-grep-82fe00e-cpan-c30982ac1bc3 )