Memoize::Storable - store Memoized data in Storable database

NAME DESCRIPTION NAME Memoize::Storable - store Memoized data in Storable database DESCRIPTION See Memoize.

Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for Storable use

NAME DESCRIPTION NAME Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for Storable use DESCRIPTION See Memoize.

MIME::Base64 - Encoding and decoding of base64 strings

NAME SYNOPSIS DESCRIPTION EXAMPLES COPYRIGHT SEE ALSO NAME MIME::Base64 - Encoding and decoding of base64 strings SYNOPSIS use MIME::Base64; $encoded = encode_base64('Aladdin:open sesame'); $decoded = decode_base64($encoded); DESCRIPTION This module provides functions to encode and decode strings into and from the base64 encoding specified in RFC 2045 - MIME (Multipurpose Internet Mail Extensions). The base64 encoding is designed to represent arbitrary sequences of octets in a form that nee

Memoize::ExpireFile - test for Memoize expiration semantics

NAME DESCRIPTION NAME Memoize::ExpireFile - test for Memoize expiration semantics DESCRIPTION See Memoize::Expire.

Memoize::ExpireTest - test for Memoize expiration semantics

NAME DESCRIPTION NAME Memoize::ExpireTest - test for Memoize expiration semantics DESCRIPTION This module is just for testing expiration semantics. It's not a very good example of how to write an expiration module. If you are looking for an example, I recommend that you look at the simple example in the Memoize::Expire documentation, or at the code for Memoize::Expire itself. If you have questions, I will be happy to answer them if you send them to mjd-perl-memoize+@plover.com.

Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for Storable use

NAME DESCRIPTION NAME Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for Storable use DESCRIPTION See Memoize.

Memoize::Expire - Plug-in module for automatic expiration of memoized values

NAME SYNOPSIS DESCRIPTION INTERFACE ALTERNATIVES CAVEATS AUTHOR SEE ALSO NAME Memoize::Expire - Plug-in module for automatic expiration of memoized values SYNOPSIS use Memoize; use Memoize::Expire; tie my %cache => 'Memoize::Expire', LIFETIME => $lifetime, # In seconds NUM_USES => $n_uses; memoize 'function', SCALAR_CACHE => [HASH => \%cache ]; DESCRIPTION Memoize::Expire is a plug-in module for Memoize. It allows the cached values for memoized functions to expir

Memoize - Make functions faster by trading space for time

NAME SYNOPSIS DESCRIPTION DETAILS OPTIONSINSTALL NORMALIZER SCALAR_CACHE, LIST_CACHE OTHER FACILITIESunmemoize flush_cache CAVEATS PERSISTENT CACHE SUPPORT EXPIRATION SUPPORT BUGS MAILING LIST AUTHOR COPYRIGHT AND LICENSE THANK YOU NAME Memoize - Make functions faster by trading space for time SYNOPSIS # This is the documentation for Memoize 1.03 use Memoize; memoize('slow_function'); slow_function(arguments); # Is faster than it was before This is normally all you need to know

Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for Storable use

NAME DESCRIPTION NAME Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for Storable use DESCRIPTION See Memoize.

Math::Trig - trigonometric functions

NAME SYNOPSIS DESCRIPTION TRIGONOMETRIC FUNCTIONSERRORS DUE TO DIVISION BY ZERO SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS PLANE ANGLE CONVERSIONS RADIAL COORDINATE CONVERSIONSCOORDINATE SYSTEMS 3-D ANGLE CONVERSIONS GREAT CIRCLE DISTANCES AND DIRECTIONSgreat_circle_distance great_circle_direction great_circle_bearing great_circle_destination great_circle_midpoint great_circle_waypoint EXAMPLESCAVEAT FOR GREAT CIRCLE FORMULAS Real-valued asin and acos BUGS AUTHORS LICENSE NAME Math::Tri