Name: | rh-perl526-perl-Memoize |
---|---|
Version: | 1.03 |
Release: | 405.el7 |
Architecture: | noarch |
Group: | Unspecified |
Size: | 83282 |
License: | GPL+ or Artistic |
RPM: | rh-perl526-perl-Memoize-1.03-405.el7.noarch.rpm |
Source RPM: | rh-perl526-perl-5.26.3-405.el7.src.rpm |
Build Date: | Wed Jan 02 2019 |
Build Host: | x86-ol7-builder-02.us.oracle.com |
Vendor: | Oracle America |
URL: | http://www.perl.org/ |
Summary: | Transparently speed up functions by caching return values |
Description: | 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. |