| 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 | |
| 34 | std::string Term::cursor_right(std::size_t columns) { return "\033[" + std::to_string(columns) + 'C'; } |
| 35 |
nothing calls this directly
no test coverage detected