cfg_symbol_bit_matrix/lib.rs
1//! This crate defines the type [`SymbolBitMatrix`] as well as
2//! operations and utilites relating to it.
3
4#![deny(unsafe_code)]
5#![deny(missing_docs)]
6
7pub mod remap_symbols;
8mod symbol_bit_matrix;
9
10pub use self::remap_symbols::{CfgRemapSymbolsExt, Remap};
11pub use self::symbol_bit_matrix::*;