Module::CoreList::Utils - what utilities shipped with versions of perl |
Module::CoreList::Utils - what utilities shipped with versions of perl
use Module::CoreList::Utils;
print $Module::CoreList::Utils::utilities{5.009003}{ptar}; # prints 1
print Module::CoreList::Utils->first_release('corelist'); # prints 5.008009
print Module::CoreList::Utils->first_release_by_date('corelist'); # prints 5.009002
Module::CoreList::Utils provides information on which core and dual-life utilities shipped with each version of the perl manpage.
It provides a number of mechanisms for querying this information.
There is a functional programming API available for programmers to query information.
Programmers may also query the contained hash structure to find relevant information.
These are the functions that are available, they may either be called as functions or class methods:
Module::CoreList::Utils::first_release('corelist'); # as a function
Module::CoreList::Utils->first_release('corelist'); # class method
utilities
first_release( UTILITY )
first_release_by_date( UTILITY )
removed_from( UTILITY )
removed_from_by_date( UTILITY )
These are the hash data structures that are available:
%Module::CoreList::Utils::utilities
Chris BinGOs
Williams <chris@bingosnet.co.uk>
Currently maintained by the perl 5 porters <perl5-porters@perl.org>.
This module is the result of archaeology undertaken during QA Hackathon in Lancaster, April 2013.
Copyright (C) 2013 Chris Williams. All Rights Reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
corelist, the Module::CoreList manpage, the perl manpage, http://perlpunks.de/corelist
Module::CoreList::Utils - what utilities shipped with versions of perl |