wick-stdlib 0.2.0

The default standard library for the Wick project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub(crate) mod core {
  pub(crate) mod error;
  pub(crate) mod log;
  pub(crate) mod panic;
}
pub(crate) mod math {
  pub(crate) mod add;
  pub(crate) mod subtract;
}
pub(crate) mod rand {
  pub(crate) mod bytes;
  pub(crate) mod string;
  pub(crate) mod uuid;
}
pub(crate) mod string {
  pub(crate) mod concat;
}