sequences.generalizations: fix stack effect docs for "nall?".

db4
John Benediktsson 2012-09-27 11:46:24 -07:00
parent 3abc7a9500
commit e23cb40dae
2 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ HELP: nmap-reduce
{ $description "A generalization of " { $link map-reduce } " that can be applied to any number of sequences." } ;
HELP: nall?
{ $values { "seqs... " { $snippet "n" } " sequences on the datastack" } { "quot" { $quotation "( element... - ? )" } } { "n" integer } }
{ $values { "seqs..." { $snippet "n" } " sequences on the datastack" } { "quot" { $quotation "( element... - ? )" } } { "n" integer } { "?" boolean } }
{ $description "A generalization of " { $link all? } " that can be applied to any number of sequences." } ;
ARTICLE: "sequences.generalizations" "Generalized sequence words"

View File

@ -122,5 +122,5 @@ MACRO: nmap-reduce ( map-quot reduce-quot n -- quot )
_ _ (neach) (each-integer)
] ;
: nall? ( seqs... quot n -- )
: nall? ( seqs... quot n -- ? )
(neach) all-integers? ; inline