hyperion 0.2.1

Generic LSystem implementation.
Documentation
1
2
3
4
/// Marker trait for a type that can be used as an LSystem grammer.
pub trait Alphabet: Copy + PartialEq {}

impl <T: Copy + PartialEq>Alphabet for T {}