Bitwise operations on integers #
Possibly only of archaeological significance.
Recursors #
Int.bitCasesOn
: Parity disjunction. Something is true/defined onℤ
if it's true/defined for even and for odd values.
Int.natBitwise
is an auxiliary definition for Int.bitwise
.
Equations
- Int.natBitwise f m n = bif f false false then Int.negSucc (Nat.bitwise (fun (x y : Bool) => !f x y) m n) else ↑(Nat.bitwise f m n)
Instances For
Int.bitwise
applies the function f
to pairs of bits in the same position in
the binary representations of its inputs.
Equations
- Int.bitwise f (Int.ofNat m) (Int.ofNat n) = Int.natBitwise f m n
- Int.bitwise f (Int.ofNat m) (Int.negSucc n) = Int.natBitwise (fun (x y : Bool) => f x !y) m n
- Int.bitwise f (Int.negSucc m) (Int.ofNat n) = Int.natBitwise (fun (x y : Bool) => f (!x) y) m n
- Int.bitwise f (Int.negSucc m) (Int.negSucc n) = Int.natBitwise (fun (x y : Bool) => f (!x) !y) m n
Instances For
lnot
flips all the bits in the binary representation of its input
Instances For
ldiff a b
performs bitwise set difference. For each corresponding
pair of bits taken as booleans, say aᵢ
and bᵢ
, it applies the
boolean operation aᵢ ∧ bᵢ
to obtain the iᵗʰ
bit of the result.
Equations
Instances For
m <<< n
produces an integer whose binary representation
is obtained by left-shifting the binary representation of m
by n
places
Equations
- One or more equations did not get rendered due to their size.
m >>> n
produces an integer whose binary representation
is obtained by right-shifting the binary representation of m
by n
places
bitwise ops #
Defines a function from ℤ
conditionally, if it is defined for odd and even integers separately
using bit
.
Equations
Instances For
bitwise ops #
Compare with Int.zero_shiftRight
, which has n : ℕ
.