]> gitweb.factorcode.org Git - factor.git/blob - vm/booleans.hpp
sequences: collect-from, remove sequence-operator-from, cleanups
[factor.git] / vm / booleans.hpp
1 namespace factor {
2
3 // Cannot allocate
4 inline static bool to_boolean(cell value) { return value != false_object; }
5
6 }