Changeset 25947
- Timestamp:
- 12/05/08 16:02:30 (4 years ago)
- Location:
- lang/perl/Util-Any/trunk
- Files:
-
- 1 added
- 3 modified
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (1 diff)
-
lib/Util/Any.pm (modified) (10 diffs)
-
t/03-debug.t (added)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Util-Any/trunk/Changes
r25767 r25947 1 1 Revision history for Util-Any 2 3 0.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. 2 8 3 9 0.02 2008/12/03 14:52 -
lang/perl/Util-Any/trunk/MANIFEST
r25764 r25947 18 18 t/02-util-func-scalar-prefix.t 19 19 t/01-util-kind-all-prefix.t 20 t/03-debug.t 20 21 t/lib/MyUtil.pm -
lang/perl/Util-Any/trunk/lib/Util/Any.pm
r25939 r25947 6 6 use strict; 7 7 8 our $DEBUG = 0;9 8 our $Utils = { 10 9 list => [ qw/List::Util List::MoreUtils/ ], … … 200 199 =head1 EXPORT 201 200 202 The following is kinds of functions and list of exported functions. 201 Kinds of functions and list of exported functions are below. 202 Note that these modules and version are in my environment(Perl 5.8.4). 203 So, it must be diffrent in your environment. 203 204 204 205 =head2 scalar 205 206 206 from Scalar::Util 207 from Scalar::Util (1.19) 207 208 208 209 blessed … … 221 222 =head2 hash 222 223 223 from Hash::Util 224 from Hash::Util (0.05) 224 225 225 226 hash_seed … … 233 234 =head2 list 234 235 235 from List::Util 236 from List::Util (1.19) 236 237 237 238 first … … 244 245 sum 245 246 246 from List::MoreUtils 247 from List::MoreUtils (0.21) 247 248 248 249 after … … 280 281 =head2 string 281 282 282 from String::Util 283 from String::Util (0.11) 283 284 284 285 crunch … … 295 296 unquote 296 297 297 from String::CamelCase 298 from String::CamelCase (0.01) 298 299 299 300 camelize … … 303 304 =head2 debug 304 305 305 from Data::Dumper 306 from Data::Dumper (2.121) 306 307 307 308 Dumper … … 329 330 use Util::Yours qw/list/; 330 331 331 =head2 $Utils DEFINITION RULE332 =head2 $Utils STRUCTURE 332 333 333 334 Key must be lower character. … … 344 345 345 346 $Utils = { list => ['List::Utils'] }; 346 $Utils = { list => [['List::Utils', 'lu_']] }; 347 $Utils = { list => [['List::Utils', 'prefix_']] }; 348 349 see L<PREFIX FOR EACH MODULE> 347 350 348 351 =head1 PREFIX FOR EACH MODULE
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)