//! Bitwise operation tests organized by operation type
//!
//! This module contains comprehensive tests for all bitwise operations,
//! with each operation in its own submodule for better organization.
#![cfg(feature = "bitwise")]
#[path = "ops/bitwise/and.rs"]
mod and;
#[path = "ops/bitwise/ergonomics.rs"]
mod ergonomics;
#[path = "ops/bitwise/not.rs"]
mod not;
#[path = "ops/bitwise/or.rs"]
mod or;
#[path = "ops/bitwise/shift.rs"]
mod shift;
#[path = "ops/bitwise/xor.rs"]
mod xor;