livesplit-core 0.13.0

livesplit-core is a library that provides a lot of functionality for creating a speedrun timer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Various utilities used in this crate.

pub(crate) mod ascii_char;
pub(crate) mod ascii_set;
pub(crate) mod byte_parsing;
mod clear_vec;
pub(crate) mod not_nan;
pub mod ordered_map;
mod populate_string;
#[cfg(test)]
pub mod tests_helper;
pub(crate) mod xml;

pub use self::{
    clear_vec::{Clear, ClearVec},
    populate_string::PopulateString,
};