//! Constants and types used throughout the Brainfuck interpreter. /// The inner type used by a Brainfuck tape. #[cfg(feature = "u8-engine")] pub type TapeInner = u8; /// The inner type used by a Brainfuck tape. #[cfg(feature = "u16-engine")] pub type TapeInner = u16;