sequences.generalizations: fix stack effect docs for "nall?".
parent
3abc7a9500
commit
e23cb40dae
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue