- [ ] `(bit-and x y)`, Rust Trait: [BitAnd](https://doc.rust-lang.org/std/ops/trait.BitAnd.html) - [ ] `(bit-or x y)`, Rust Trait: [BitOr](https://doc.rust-lang.org/std/ops/trait.BitOr.html) - [ ] `(bit-xor x y)`, Rust Trait: [BitXor](https://doc.rust-lang.org/std/ops/trait.BitXor.html) - [ ] `(bit-shift-left x y)`, Rust Trait: [Shl](https://doc.rust-lang.org/std/ops/trait.Shl.html) - [ ] `(bit-shift-right x y)`, Rust Trait: [Shr](https://doc.rust-lang.org/std/ops/trait.Shr.html) If you can implement just one, send a PR 💟