Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-Memoize-1.170.0-1.mga10 RPM for noarch

From Mageia Cauldron for aarch64 / media / core / release

Name: perl-Memoize Distribution: Mageia
Version: 1.170.0 Vendor: Mageia.Org
Release: 1.mga10 Build date: Fri Jan 24 17:30:58 2025
Group: Development/Perl Build host: localhost
Size: 106172 Source RPM: perl-Memoize-1.170.0-1.mga10.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);
	}

Provides

Requires

License

GPL+ or Artistic

Changelog

* Fri Jan 24 2025 tv <tv> 1.170.0-1.mga10
  + Revision: 2141582
  - update to 1.17
* Fri Feb 03 2023 tv <tv> 1.160.0-1.mga9
  + Revision: 1937861
  - update to 1.16

Files

/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, Mon Jan 27 10:09:21 2025