UpAndClear moves the cursor up by n lines, then clears the line.
(n int)
| 109 | |
| 110 | // UpAndClear moves the cursor up by n lines, then clears the line. |
| 111 | func UpAndClear(n int) { |
| 112 | Up(n) |
| 113 | ClearLine() |
| 114 | } |
| 115 | |
| 116 | // DownAndClear moves the cursor down by n lines, then clears the line. |
| 117 | func DownAndClear(n int) { |
no test coverage detected
searching dependent graphs…