rstm-actors 0.1.0

This crate focuses on building concrete implementations for Turing Machines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
    Appellation: impl_turing_engine <module>
    Created At: 2025.08.31:14:48:57
    Contrib: @FL03
*/
use crate::engine::TuringEngine;
use rstm_state::RawState;

#[doc(hidden)]
impl<Q, A> TuringEngine<'_, Q, A>
where
    Q: RawState,
{
    #[deprecated(since = "0.0.9", note = "use `current_epoch` instead")]
    pub const fn steps(&self) -> usize {
        self.cycles
    }
}