stateforward-sml 1.2.0

sml.rs: a no-std Rust implementation of the sml.cpp transition-table DSL
Documentation
1
2
3
4
5
6
7
8
9
10
11
use sml::sml;

pub struct Message<T>(T);

sml! {
    MissingConst<T, const N: usize> {
        *Idle + event<Message<T>> = X,
    }
}

fn main() {}