Changeset 25947

Show
Ignore:
Timestamp:
12/05/08 16:02:30 (4 years ago)
Author:
ktat
Message:

Checking in changes prior to tagging of version 0.03. Changelog diff is:

=== Changes
==================================================================
--- Changes (revision 30147)
+++ Changes (local)
@@ -1,5 +1,11 @@

Revision history for Util-Any


+0.03 2008/12/05 15:37
+ add debug option
+ write document in detail
+ fix for Perl 5.10.
+ Perl 5.10 Hash::Util doesn't have some functions which are defined in EXPORT_OK.
+

0.02 2008/12/03 14:52

class variables should be cloned in sub class,
so change %Utils variables from hash to hash ref to clone easily.

Location:
lang/perl/Util-Any/trunk
Files:
1 added
3 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Util-Any/trunk/Changes

    r25767 r25947  
    11Revision history for Util-Any 
     2 
     30.03    2008/12/05 15:37 
     4        add debug option 
     5        write document in detail 
     6        fix for Perl 5.10. 
     7        Perl 5.10 Hash::Util doesn't have some functions which are defined in EXPORT_OK. 
    28 
    390.02    2008/12/03 14:52 
  • lang/perl/Util-Any/trunk/MANIFEST

    r25764 r25947  
    1818t/02-util-func-scalar-prefix.t 
    1919t/01-util-kind-all-prefix.t 
     20t/03-debug.t 
    2021t/lib/MyUtil.pm 
  • lang/perl/Util-Any/trunk/lib/Util/Any.pm

    r25939 r25947  
    66use strict; 
    77 
    8 our $DEBUG = 0; 
    98our $Utils = { 
    109              list   => [ qw/List::Util List::MoreUtils/ ], 
     
    200199=head1 EXPORT 
    201200 
    202 The following is kinds of functions and list of exported functions. 
     201Kinds of functions and list of exported functions are below. 
     202Note that these modules and version are in my environment(Perl 5.8.4). 
     203So, it must be diffrent in your environment. 
    203204 
    204205=head2 scalar 
    205206 
    206 from Scalar::Util 
     207from Scalar::Util (1.19) 
    207208 
    208209 blessed 
     
    221222=head2 hash 
    222223 
    223 from Hash::Util 
     224from Hash::Util (0.05) 
    224225 
    225226 hash_seed 
     
    233234=head2 list 
    234235 
    235 from List::Util 
     236from List::Util (1.19) 
    236237 
    237238 first 
     
    244245 sum 
    245246 
    246 from List::MoreUtils 
     247from List::MoreUtils (0.21) 
    247248 
    248249 after 
     
    280281=head2 string 
    281282 
    282 from String::Util 
     283from String::Util (0.11) 
    283284 
    284285 crunch 
     
    295296 unquote 
    296297 
    297 from String::CamelCase 
     298from String::CamelCase (0.01) 
    298299 
    299300 camelize 
     
    303304=head2 debug 
    304305 
    305 from Data::Dumper 
     306from Data::Dumper (2.121) 
    306307 
    307308 Dumper 
     
    329330 use Util::Yours qw/list/; 
    330331 
    331 =head2 $Utils DEFINITION RULE 
     332=head2 $Utils STRUCTURE 
    332333 
    333334Key must be lower character. 
     
    344345 
    345346 $Utils = { list => ['List::Utils'] }; 
    346  $Utils = { list => [['List::Utils', 'lu_']] }; 
     347 $Utils = { list => [['List::Utils', 'prefix_']] }; 
     348 
     349see L<PREFIX FOR EACH MODULE> 
    347350 
    348351=head1 PREFIX FOR EACH MODULE