STL rework

- fixed lots of bugs
- overlay libraries work correctly and reliably
- the STL is an overlay library
- examples updated
This commit is contained in:
2023-06-17 21:12:23 +01:00
parent 5bb8a12fc2
commit aebbf51228
91 changed files with 1444 additions and 1395 deletions

View File

@@ -3,6 +3,7 @@ mod print_nname;
mod pushed;
mod replace_first;
mod side;
mod split_max_prefix;
mod string_from_charset;
mod substack;
mod unwrap_or;
@@ -12,6 +13,7 @@ pub use print_nname::sym2string;
pub use pushed::pushed;
pub use replace_first::replace_first;
pub use side::Side;
pub use split_max_prefix::split_max_prefix;
pub use substack::{Stackframe, Substack, SubstackIterator};
pub(crate) use unwrap_or::unwrap_or;
pub mod iter;