]> gitweb.factorcode.org Git - factor.git/blob - vm/booleans.hpp
Merge branch 'master' of git://factorcode.org/git/factor into propagation
[factor.git] / vm / booleans.hpp
1 namespace factor
2 {
3
4 /* Cannot allocate */
5 inline static bool to_boolean(cell value)
6 {
7         return value != false_object;
8 }
9
10 }