Geo::CountryFlags::URLs is autogenerated by Makefile.PL
Last updated Sat Sep 16 02:32:24 2006 GMT
NAME
Geo::CountryFlags::URLs::URLs - hash to map values
SYNOPSIS
Geo::CountryFlags::URLs provides a variety of methods and functions to lookup values either as hash-like constants (recommended) or directly from a hash array.
require $Geo::CountryFlags::URLs;
my $gcu = new Geo::CountryFlags::URLs;
$value = $gcu->KEY;
Perl 5.6 or greater can use syntax
$value = $gcu->$key;
or
$subref = subref Geo::CountryFlags::URLs;
$value = $subref->($key);
$value = &$subref($key);
or
$value = value Geo::CountryFlags::URLs($key);
Geo::CountryFlags::URLs->value($key);
to return a reference to the map directly
$hashref = hashptr Geo::CountryFlags::URLs($class);
$value = $hashref->{$key};
DESCRIPTION
Geo::CountryFlags::URLs maps URLs values.
Values may be returned directly by designating the KEY as a method or subroutine of the form:
$value = Geo::CountryFlags::URLs::KEY;
$value = Geo::CountryFlags::URLs->KEY;
or in Perl 5.6 and above
$value = Geo::CountryFlags::URLs->$key;
or
$gcu = new Geo::CountryFlags::URLs;
$value = $gcu->KEY;
or in Perl 5.6 and above
$value= = $gcu->$key;
$gcu = new Geo::CountryFlags::URLs;
Return a reference to the modules in this package.
$hashptr = hashptr Geo::CountryFlags::URLs($class);
Return a blessed reference to a copy of the hash in this package.
input: [optional] class or class ref returns: a reference blessed into $class if $class is present otherwise blessed into Geo::CountryFlags::URLs
$value = value Geo::CountryFlags::URLs($key);
$value = $gcu->value($key);
Return the value in the map hash or undef if it does not exist.
$subref = subref Geo::CountryFlags::URLs;
$subref = $gcu->subref;
Return a subroutine reference that will return the value of a key or undef if the key is not present.
$value = $subref->($key); $value = &$subref($key);
EXPORTs
Nothing
AUTHOR
Michael Robinton michael@bizsystems.com
COPYRIGHT and LICENSE
Copyright 2006 Michael Robinton, michael@bizsystems.com
This module is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version,
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either the GNU General Public License or the Artistic License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA