Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: perl-Memoize | Distribution: Mageia |
Version: 1.30.0 | Vendor: Mageia.Org |
Release: 13.mga8 | Build date: Wed Feb 12 06:38:45 2020 |
Group: Development/Perl | Build host: localhost |
Size: 92391 | Source RPM: perl-Memoize-1.30.0-13.mga8.src.rpm |
Packager: umeabot <umeabot> | |
Url: http://search.cpan.org/dist/Memoize | |
Summary: Automatically cache results of functions |
`Memoizing' a function makes it faster by trading space for time. It does this by caching the return values of the function in a table. If you call the function again with the same arguments, 'memoize' jumps in and gives you the value out of the table, instead of letting the function compute the value all over again. Here is an extreme example. Consider the Fibonacci sequence, defined by the following function: sub fib { my $n = shift; return $n if $n < 2; fib($n-1) + fib($n-2); }
GPL+ or Artistic
* Wed Feb 12 2020 umeabot <umeabot> 1.30.0-13.mga8 + Revision: 1495591 - Mageia 8 Mass Rebuild + wally <wally> - replace deprecated %makeinstall_std * Wed Sep 19 2018 umeabot <umeabot> 1.30.0-12.mga7 + Revision: 1269249 - Mageia 7 Mass Rebuild
/usr/share/doc/perl-Memoize /usr/share/doc/perl-Memoize/Changes /usr/share/doc/perl-Memoize/META.yml /usr/share/doc/perl-Memoize/README /usr/share/doc/perl-Memoize/TODO /usr/share/man/man3/Memoize.3pm.xz /usr/share/man/man3/Memoize::AnyDBM_File.3pm.xz /usr/share/man/man3/Memoize::Expire.3pm.xz /usr/share/man/man3/Memoize::ExpireFile.3pm.xz /usr/share/man/man3/Memoize::ExpireTest.3pm.xz /usr/share/man/man3/Memoize::NDBM_File.3pm.xz /usr/share/man/man3/Memoize::SDBM_File.3pm.xz /usr/share/man/man3/Memoize::Storable.3pm.xz /usr/share/perl5/vendor_perl/Memoize /usr/share/perl5/vendor_perl/Memoize.pm /usr/share/perl5/vendor_perl/Memoize/AnyDBM_File.pm /usr/share/perl5/vendor_perl/Memoize/Expire.pm /usr/share/perl5/vendor_perl/Memoize/ExpireFile.pm /usr/share/perl5/vendor_perl/Memoize/ExpireTest.pm /usr/share/perl5/vendor_perl/Memoize/NDBM_File.pm /usr/share/perl5/vendor_perl/Memoize/SDBM_File.pm /usr/share/perl5/vendor_perl/Memoize/Storable.pm
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Oct 13 10:18:22 2024