factor/unmaintained/io/io.factor

9 lines
240 B
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
USING: calendar io io-internals kernel math namespaces
nonblocking-io prettyprint quotations sequences ;
IN: libs-io
: bit-set? ( m n -- ? ) [ bitand ] keep = ;
: set-bit ( m bit -- n ) bitor ;
: clear-bit ( m bit -- n ) bitnot bitand ;