Method: Curses::Window#erase

Defined in:
ext/curses/curses.c

#eraseObject

Erase the window.



1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
# File 'ext/curses/curses.c', line 1944

static VALUE
window_erase(VALUE obj)
{
    struct windata *winp;

    GetWINDOW(obj, winp);
    werase(winp->window);

    return Qnil;
}