]> gitweb.factorcode.org Git - factor.git/blob - vm/booleans.hpp
core: find-subseq -> subsequence-starts, find-subseq-from -> subsequence-starts-from
[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 }