Login
7 branches 0 tags
Ben (X13/Void) Fixed some clang errors/warning bcb9321 4 years ago 248 Commits
nujel / stdlib / binary.nuj
; Some functions manipulating binary date

[defun lognand [...l]
        "Returns the Nand of its arguments"
        [lognot [apply logand ...l]]
]

[defun bit-set?! [i]
       [def mask [ash 1 i]]
       [λ [α] [not [zero? [logand α mask]]]]
]

[defun bit-clear?! [i]
       [def mask [ash 1 i]]
       [λ [α] [zero? [logand α mask]]]
]