Searched defs:Tape (Results 1 – 2 of 2) sorted by relevance
17 struct Tape { struct18 constexpr Tape() : l(0), val(false), r(0) {} in Tape() function19 constexpr Tape(const Tape &old, bool write) : in Tape() function21 constexpr Tape(const Tape &old, Dir dir) : in Tape() function26 const Tape *l; argument28 const Tape *r; argument
35 class Tape(object): class