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.160.0 | Vendor: Mageia.Org |
Release: 1.mga9 | Build date: Fri Feb 3 20:44:12 2023 |
Group: Development/Perl | Build host: localhost |
Size: 107579 | Source RPM: perl-Memoize-1.160.0-1.mga9.src.rpm |
Packager: tv <tv> | |
Url: https://metacpan.org/release/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
* Fri Feb 03 2023 tv <tv> 1.160.0-1.mga9 + Revision: 1937861 - update to 1.16 * Thu Oct 27 2022 tv <tv> 1.150.0-1.mga9 + Revision: 1899749 - update to 1.15 * Thu Oct 20 2022 tv <tv> 1.140.0-1.mga9 + Revision: 1897927 - update to 1.14 * Mon Sep 05 2022 tv <tv> 1.130.0-1.mga9 + Revision: 1884213 - update to 1.13 * Sat Aug 13 2022 tv <tv> 1.100.0-1.mga9 + Revision: 1877444 - update to 1.10 * Wed Aug 03 2022 tv <tv> 1.90.0-1.mga9 + Revision: 1874909 - update to 1.09 * Fri Jul 29 2022 tv <tv> 1.80.0-1.mga9 + Revision: 1872836 - update to 1.08 * Tue Jul 26 2022 tv <tv> 1.50.0-1.mga9 + Revision: 1872055 - update to 1.05 * Sun Mar 20 2022 umeabot <umeabot> 1.30.0-14.mga9 + Revision: 1804467 - Mageia 9 Mass Rebuild
/usr/share/doc/perl-Memoize /usr/share/doc/perl-Memoize/Changes /usr/share/doc/perl-Memoize/LICENSE /usr/share/doc/perl-Memoize/META.json /usr/share/doc/perl-Memoize/META.yml /usr/share/doc/perl-Memoize/MYMETA.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::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/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, Tue Feb 11 11:32:52 2025