]> gitweb.factorcode.org Git - factor.git/blob - basis/memoize/syntax/syntax-docs.factor
memoize.syntax: adding IDENTITY-MEMO[
[factor.git] / basis / memoize / syntax / syntax-docs.factor
1
2 USING: help.markup help.syntax memoize.syntax ;
3
4 HELP: MEMO[
5 { $syntax "MEMO[ elements... ]" }
6 { $description "Defines the given literal quotation as one which memoizes its outputs given a particular input." } ;
7
8 HELP: IDENTITY-MEMO[
9 { $syntax "IDENTITY-MEMO[ elements... ]" }
10 { $description "Defines the given literal quotation as one which memoizes its outputs given a particular input which is identical to another input." } ;