dispatch ( n array -- ) - Factor Documentation

dispatch ( n array -- )


Vocabulary
sequences .private

Inputs
n a fixnum
array an array of quotations


Outputs
None

Word description
Calls the nth quotation in the array.

Warning
This word is an implementation detail used by the generic word system to accelerate method dispatch. It does not perform type or bounds checks, and user code should not need to call it directly.


Definition
USING: kernel ;

IN: sequences.private

: dispatch ( n array -- ) array-nth call ;

AltStyle によって変換されたページ (->オリジナル) /