blob: 6ca1bc5e4b7a86a4b25ab6c112aab1610a68892f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
//! 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;
|