Skip to main content

yui_core/
lib.rs

1#![doc = include_str!("../README.md")]
2
3// laid out as `<group>/<type>.rs`, so a module may share its parent's name.
4#![allow(clippy::module_inception)]
5
6pub mod abst;
7pub mod ext;
8
9mod conc;
10pub use conc::*;
11
12pub mod algo;
13pub mod util;