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