// Clear from the current cursor position, moving to the right, to the end // of the line func (w *Window) ClearToEOL() error { if C.wclrtoeol(w.win) == C.ERR { return errors.New("Failed to clear to end of line") } return nil }
func (win *Window) ClearToEOL() { C.wclrtoeol((*C.WINDOW)(win)) }
func (win *Window) Clrtoeol() { C.wclrtoeol((*C.WINDOW)(win)) }
func (w *Window) MoveAndClear(y int, x int) { w.Move(y, x) C.wclrtoeol(w.win) }
func (w *Window) Clrtoeol() { C.wclrtoeol(w.win) }
// Erases content from cursor to end of line inclusive. func (win *Window) Clrtoeol() { C.wclrtoeol(win.cwin) }
func (w *CursesWindow) MoveAndClear(y int, x int) { w.Move(y, x) C.wclrtoeol(w.impl) }
func (win *Window) Clrtoeol() { in() defer out() C.wclrtoeol((*C.WINDOW)(win)) }
func (win *Window) Clrtoeol() error { if C.wclrtoeol((*C.WINDOW)(win)) == C.ERR { return CursesError{"wclrtoeol failed"} } return nil }