Implementation of the Tape class methods for the Turing Machine.
More...
#include "tape.hpp"
#include <algorithm>
#include <ranges>
Go to the source code of this file.
|
| std::ostream & | operator<< (std::ostream &os, const Tape &tape) noexcept |
| | Global stream insertion operator overload.
|
| |
Implementation of the Tape class methods for the Turing Machine.
- Author
- wh0crypt (wh0cr.nosp@m.ypt@.nosp@m.proto.nosp@m.n.me)
- Version
- 0.1
- Date
- 2026-06-27
- Copyright
- Copyright (c) 2026 wh0crypt. Licensed under the MIT License.
Definition in file tape.cpp.
◆ operator<<()
| std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const Tape & |
tape |
|
) |
| |
|
noexcept |
Global stream insertion operator overload.
Overloaded stream insertion operator to allow direct streaming of Tape instances.
Seamlessly pipes the custom Tape print layout directly into standard I/O pipelines.
Definition at line 111 of file tape.cpp.