Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/motemen/util-autoload
Exports and autoloads useful functions
https://github.com/motemen/util-autoload
Last synced: 3 days ago
JSON representation
Exports and autoloads useful functions
- Host: GitHub
- URL: https://github.com/motemen/util-autoload
- Owner: motemen
- Created: 2012-04-23T17:00:59.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-04-23T17:01:27.000Z (almost 13 years ago)
- Last Synced: 2024-11-30T21:10:08.014Z (2 months ago)
- Language: Perl
- Size: 89.8 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
NAME
Util::Autoload - Exports and autoloads useful functionsSYNOPSIS
use Util::Autoload; # simply use, and now you can ...# automatically loads Data::Dumper::Concise, Path::Class
warn +Dumper [ file(__FILE__)->slurp ];# automatically loads Perl6::Say, Time::Piece
say localtime()->datetime;DESCRIPTION
Util::Autoload exports common functions provided by other useful
modules. The modules are not loaded until the exported function is
called.SUPPORTTED MODULES
Perl6::Say
Path::Class
Data::Dumper::Concise
Encode
List::Util
List::MoreUtils
Scalar::Util
Time::PieceAUTHOR
motemenLICENSE
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.