boolean
Factor documentation > Factor handbook > The language > Booleans
Prev:t
Next:>boolean ( obj -- ? )


Vocabulary
kernel

Class description
A union of the t and f classes.

Definition
IN: kernel

UNION: boolean t POSTPONE: f ;


Methods
USING: kernel xml-rpc xml.data xml.syntax.private ;

M: boolean item>xml
"1" "0" ? 1 nenum T{ xml-chunk
{ seq
V{
""
T{ tag { name ~name~ } { children ~vector~ } }
""
}
}
} interpolate-xml ;