miden-air 0.22.3

Algebraic intermediate representation of Miden VM processor
Documentation
//! No-op tagging helpers for non-testing or no-std builds.

use miden_crypto::stark::air::LiftedAirBuilder;
/// No-op tagging extension for non-testing builds.
///
/// The methods call the provided closure directly so they have no runtime overhead beyond
/// the call itself (which the optimizer should inline away).
pub trait TaggingAirBuilderExt: LiftedAirBuilder {
    fn tagged<R>(
        &mut self,
        _id: usize,
        _namespace: &'static str,
        f: impl FnOnce(&mut Self) -> R,
    ) -> R {
        f(self)
    }

    fn tagged_list<R, const N: usize>(
        &mut self,
        _ids: [usize; N],
        _namespace: &'static str,
        f: impl FnOnce(&mut Self) -> R,
    ) -> R {
        f(self)
    }
}

impl<T: LiftedAirBuilder> TaggingAirBuilderExt for T {}