kutil 0.0.6

Kutil utilities collection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod foster;
mod has_length;
#[cfg(feature = "immutable")]
mod immutable_string;
#[cfg(feature = "immutable")]
mod immutable_string_vector;
mod iterator;
mod string;
mod string_vector;

#[allow(unused_imports)]
pub use {foster::*, has_length::*, iterator::*, string::*, string_vector::*};

#[cfg(feature = "immutable")]
#[allow(unused_imports)]
pub use {immutable_string::*, immutable_string_vector::*};