new_york_utils 0.1.8

Library for calculation some things
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub use file::{exists_file, read_from_file, write_to_file};
pub use hash_md5::hash_md5;
pub use levenshtein::levenshtein;
pub use make_id::make_id;
pub use matrix::Matrix;
pub use range::range;
pub use to_nearest::{ceil_to_nearest, floor_to_nearest, round_to_nearest};

mod error;
mod file;
mod hash_md5;
mod levenshtein;
mod make_id;
mod matrix;
mod range;
mod to_nearest;