yui-core 0.5.0

Core Library for YUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

// laid out as `<group>/<type>.rs`, so a module may share its parent's name.
#![allow(clippy::module_inception)]

pub mod abst;
pub mod ext;

mod conc;
pub use conc::*;

pub mod algo;
pub mod util;