quickbits 0.1.1

Fast bit manipulation routines for Rust's native integer types
Documentation
/*
 * File:    lib.rs
 * Brief:   Top level module for quickbits
 *
 * Copyright: Copyright (C) 2023-2024 John Jekel
 * See the LICENSE file at the root of the project for licensing info.
 *
*/

#![doc = include_str!("../README.md")]

#![no_std]

/* ------------------------------------------------------------------------------------------------
 * Submodules
 * --------------------------------------------------------------------------------------------- */

mod bitmanip;
mod primitive_integer;

/* ------------------------------------------------------------------------------------------------
 * Uses
 * --------------------------------------------------------------------------------------------- */

#[doc(inline)]
pub use bitmanip::BitManip;