| 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 | |
| 30 | std::string Term::cursor_up(std::size_t rows) { return "\033[" + std::to_string(rows) + 'A'; } |
| 31 | |
| 32 | std::string Term::cursor_down(std::size_t rows) { return "\033[" + std::to_string(rows) + 'B'; } |
| 33 |
nothing calls this directly
no test coverage detected