denlibs 0.2.0

denlibs is a general-purpose libraries.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # denlibs
//!
//! Collection of general-purpose libraries.
//!

/// String manipulation functions
pub mod string_manipulations;
/// Most common mathematical functions
pub mod math;
/// Random generators (for games mostly)
pub mod random;
/// Files and filesystem related functions
pub mod filesystem;
/// Converters
pub mod converters;