aboutsummaryrefslogtreecommitdiff
path: root/devel/p5-Memoize/pkg-descr
diff options
context:
space:
mode:
authorAnton Berezin <tobez@FreeBSD.org>2001-10-12 14:50:32 +0000
committerAnton Berezin <tobez@FreeBSD.org>2001-10-12 14:50:32 +0000
commit01096fa35bf3c48cb2c9881a530fa109dc257975 (patch)
tree86a5a21c9ed270d1cba870291ff7ef17a68db410 /devel/p5-Memoize/pkg-descr
parent8523c828370b0821a1e2dcd0f23ee0c7d5ec5564 (diff)
downloadports-01096fa35bf3c48cb2c9881a530fa109dc257975.tar.gz
ports-01096fa35bf3c48cb2c9881a530fa109dc257975.zip
Notes
Diffstat (limited to 'devel/p5-Memoize/pkg-descr')
-rw-r--r--devel/p5-Memoize/pkg-descr11
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/p5-Memoize/pkg-descr b/devel/p5-Memoize/pkg-descr
new file mode 100644
index 000000000000..2d1bb3f77f4a
--- /dev/null
+++ b/devel/p5-Memoize/pkg-descr
@@ -0,0 +1,11 @@
+`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.
+
+Author: Mark-Jason Dominus <mjd-perl-memoize+@plover.com>
+WWW: http://search.cpan.org/search?dist=Memoize
+
+-Anton
+<tobez@FreeBSD.org>