rstm-state 0.1.6

A generic state implementation and its supporting interfaces
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
    Appellation: state <module>
    Created At: 2025.08.30:00:11:24
    Contrib: @FL03
*/
#![cfg(feature = "macros")]

/// the `s!` macro is a simple helper macro to create a [`State`](crate::state::State)
/// instance.
#[macro_export]
macro_rules! s {
    ($($state:expr),* $(,)?) => {
        $(
            $crate::state::State($state),
        )*
    };
}