/*
Appellation: aliases <module>
Created At: 2026.01.11:11:18:54
Contrib: @FL03
*/
use crate;
/// A type alias for a [State] whose inner value is the dynamically sized type of a boxed [`Any`](core::any::Any).
pub type AnyState = ;
/// A type alias for a [`State`] instance configured to leverage the [`ControlFlow`](core::ops::ControlFlow)
/// enum as its inner type. This is a useful shortcut for representing a halt state.
pub type ControlState<Q = usize> = ;
/// A type alias for a [`State`] equipped with the dedicated [`Halt`] enum as its inner type.
pub type HaltState<Q = u8> = ;
/// A [`State`] alias allowing potentially uninitialized inner values using the [`MaybeUninit`](core::mem::MaybeUninit)
/// implementation.
pub type MaybeState<Q = bool> = ;
/// A state whose halting value is defined by the [`None`](Option::None) variant.
pub type OptionState<Q> = ;