shakemyleg 2.2.2

A simple state machine definition language and interpreter.
Documentation
1
2
3
4
5
#[cfg(feature = "thread_safe")]
pub type RefCount<T> = std::sync::Arc<T>;

#[cfg(not(feature = "thread_safe"))]
pub type RefCount<T> = std::rc::Rc<T>;