factor/vm/booleans.hpp

7 lines
118 B
C++

namespace factor {
// Cannot allocate
inline static bool to_boolean(cell value) { return value != false_object; }
}