stak_time/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
//! Time for Stak Scheme.

#![no_std]

#[cfg(feature = "std")]
extern crate std;

mod clock;
mod primitive_set;

pub use clock::*;
pub use primitive_set::{Primitive, TimePrimitiveSet};