quickbits/
lib.rs

1/*
2 * File:    lib.rs
3 * Brief:   Top level module for quickbits
4 *
5 * Copyright: Copyright (C) 2023-2024 John Jekel
6 * See the LICENSE file at the root of the project for licensing info.
7 *
8*/
9
10#![doc = include_str!("../README.md")]
11
12#![no_std]
13
14/* ------------------------------------------------------------------------------------------------
15 * Submodules
16 * --------------------------------------------------------------------------------------------- */
17
18mod bitmanip;
19mod primitive_integer;
20
21/* ------------------------------------------------------------------------------------------------
22 * Uses
23 * --------------------------------------------------------------------------------------------- */
24
25#[doc(inline)]
26pub use bitmanip::BitManip;