App-wordlist

 view release on metacpan or  search on metacpan

script/_wordlist  view on Meta::CPAN



To contribute, you can send patches by email/via RT, or send pull requests on
GitHub.

Most of the time, you don't need to build the distribution yourself. You can
simply modify the code, then test via:

 % prove -l

If you want to build the distribution (e.g. to try to install it locally on your
system), you can install L<Dist::Zilla>,
L<Dist::Zilla::PluginBundle::Author::PERLANCAR>,
L<Pod::Weaver::PluginBundle::Author::PERLANCAR>, and sometimes one or two other
Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond
that are considered a bug and can be reported to me.

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2025 by perlancar <perlancar@cpan.org>.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=App-wordlist>

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=cut

__DATA__
Data::Section::Seekable v1
Clone/PP.pm,20,6331,0;0
Complete/Bash.pm,6376,41736,1;193
Complete/Common.pm,48139,6507,2;1496
Complete/Env.pm,54670,5656,3;1692
Complete/File.pm,60351,15192,4;1950
Complete/Getopt/Long.pm,75575,36939,5;2447
Complete/Path.pm,112539,17195,6;3466
Complete/Sah.pm,129758,18068,7;3981
Complete/Tcsh.pm,147851,6850,8;4465
Complete/Util.pm,154726,56450,9;4721
Data/Sah/Normalize.pm,211206,9190,10;6705
Function/Fallback/CoreOrPP.pm,220434,5030,11;6987
Getopt/Long/Util.pm,225492,24293,12;7182
Log/ger.pm,249804,12245,13;8014
Log/ger/Filter.pm,262075,1226,14;8386
Log/ger/Filter/Code.pm,263332,1419,15;8453
Log/ger/Format.pm,264777,1370,16;8535
Log/ger/Format/Default.pm,266181,3323,17;8609
Log/ger/Format/MultilevelLog.pm,269544,5162,18;8727
Log/ger/Format/None.pm,274737,1346,19;8910
Log/ger/Heavy.pm,276108,18227,20;8978
Log/ger/Layout.pm,294361,1306,21;9380
Log/ger/Output.pm,295693,1435,22;9449
Log/ger/Output/Array.pm,297160,1609,23;9529
Log/ger/Output/Null.pm,298800,1350,24;9615
Log/ger/Output/String.pm,300183,2332,25;9684
Log/ger/Plugin.pm,302541,2062,26;9789
Log/ger/Plugin/MultilevelLog.pm,304643,3836,27;9904
Log/ger/Util.pm,308503,11448,28;10033
Module/Installed/Tiny.pm,319984,14112,29;10422
Perinci/Sub/Complete.pm,334128,57331,30;10847
Perinci/Sub/GetArgs/Argv.pm,391495,56916,31;12475
Perinci/Sub/Util.pm,448439,24867,32;14001
Perinci/Sub/Util/Args.pm,473339,7054,33;14868
Perinci/Sub/Util/ResObj.pm,480428,2332,34;15143
Perinci/Sub/Util/Sort.pm,482793,2712,35;15226
String/Wildcard/Bash.pm,485537,15067,36;15337

### Clone/PP.pm ###
#package Clone::PP;
#
#use 5.006;
#use strict;
#use warnings;
#use vars qw($VERSION @EXPORT_OK);
#use Exporter;
#
#$VERSION = 1.08;
#
#@EXPORT_OK = qw( clone );
#sub import { goto &Exporter::import } # lazy Exporter
#
## These methods can be temporarily overridden to work with a given class.
#use vars qw( $CloneSelfMethod $CloneInitMethod );
#$CloneSelfMethod ||= 'clone_self';
#$CloneInitMethod ||= 'clone_init';
#
## Used to detect looped networks and avoid infinite recursion. 
#use vars qw( %CloneCache );
#
## Generic cloning function
#sub clone {
#  my $source = shift;
#
#  return undef if not defined($source);
#  
#  # Optional depth limit: after a given number of levels, do shallow copy.
#  my $depth = shift;
#  return $source if ( defined $depth and $depth -- < 1 );
#  
#  # Maintain a shared cache during recursive calls, then clear it at the end.
#  local %CloneCache = ( undef => undef ) unless ( exists $CloneCache{undef} );
#  
#  return $CloneCache{ $source } if ( defined $CloneCache{ $source } );
#  
#  # Non-reference values are copied shallowly
#  my $ref_type = ref $source or return $source;
#  
#  # Extract both the structure type and the class name of referent
#  my $class_name;
#  if ( "$source" =~ /^\Q$ref_type\E\=([A-Z]+)\(0x[0-9a-f]+\)$/ ) {
#    $class_name = $ref_type;
#    $ref_type = $1;
#    # Some objects would prefer to clone themselves; check for clone_self().
#    return $CloneCache{ $source } = $source->$CloneSelfMethod() 



( run in 0.752 second using v1.01-cache-2.11-cpan-39bf76dae61 )