| 24 | |
| 25 | std::string Term::clear_screen() { return "\033[2J"; } |
| 26 | std::string Term::clear_buffer() { return "\033[3J"; } |
| 27 | |
| 28 | std::string Term::cursor_move(std::size_t row, std::size_t column) { return "\033[" + std::to_string(row) + ';' + std::to_string(column) + 'H'; } |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected