1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! The analysis module provides a variety of functions for calculating
//! information about runs.

pub mod current_pace;
pub mod delta;
pub mod possible_time_save;
pub mod state_helper;
pub mod sum_of_segments;
pub mod total_playtime;

pub use self::state_helper::*;

#[cfg(test)]
mod tests;