1 2 3 4 5 6 7 8 9 10 11
#![no_std] extern crate alloc; #[cfg(feature = "std")] extern crate std; mod seq_bytes; pub use seq_bytes::{SeqBytes, SeqBytesChunksIter, SeqBytesIter, SeqBytesIterMut}; mod seq_str; pub use seq_str::SeqStr;