Method: Curses::Window#<<
- Defined in:
- ext/curses/curses.c
#<<(str) ⇒ Object
call-seq:
<<(str)
Add String str to the current string.
See also Curses::Window.addstr
2503 2504 2505 2506 2507 2508 |
# File 'ext/curses/curses.c', line 2503 static VALUE window_addstr2(VALUE obj, VALUE str) { window_addstr(obj, str); return obj; } |