j2ds 0.3.0

A small collection of data structures not found in the standard library
Documentation
1
2
3
4
5
6
7
8
//! A collection of misc. data structures that aren't available in the
//! standard library

mod clock;
mod ring;

pub use clock::{next_timer_event, Clock, Timer, TimerEvent};
pub use ring::{ElasticPopResult, ElasticRingBuffer, RingBuffer};