pub trait PutTape<H: Tape> {
    type Output;

    fn put_tape(self, tape: H) -> Self::Output;
}

Required Associated Types

Required Methods

Implementors