execute-effect-unsafe ( word effect -- )
Factor handbook » The language » Combinators » Fundamental combinators » Unsafe combinators

Prev:call-effect-unsafe ( quot effect -- )


Vocabulary
combinators.private

Inputs
worda word
effectan effect


Outputs
None

Word description
Given a word and a stack effect, executes the word, blindly declaring at runtime that it has the given stack effect. This is a macro which expands given a literal effect parameter, and an arbitrary word which is not required at compile time.

Warning
If the word being executed has an incorrect stack effect, undefined behavior will result. User code should use execute( instead.


See also
call-effect, call-effect-unsafe, execute-effect

Definition