ClearLinesUp clears n lines upwards from the current position and moves the cursor.
(n int)
| 138 | |
| 139 | // ClearLinesUp clears n lines upwards from the current position and moves the cursor. |
| 140 | func ClearLinesUp(n int) { |
| 141 | for i := 0; i < n; i++ { |
| 142 | UpAndClear(1) |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | // ClearLinesDown clears n lines downwards from the current position and moves the cursor. |
| 147 | func ClearLinesDown(n int) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…