seq_str/
lib.rs

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