]> gitweb.factorcode.org Git - factor.git/blob - vm/words.hpp
Moved PRIMITIVE and PRIMITIVE_FORWARDs to primitives.[ch]pp
[factor.git] / vm / words.hpp
1 namespace factor
2 {
3
4 inline bool word_optimized_p(word *word)
5 {
6         return word->code->type == WORD_TYPE;
7 }
8
9 }