Class: IO::ConsoleMode
- Inherits:
-
Object
- Object
- IO::ConsoleMode
- Defined in:
- console/console.c
Instance Method Summary collapse
Instance Method Details
#echo=(f) ⇒ Object
682 683 684 685 686 687 688 689 690 691 |
# File 'console/console.c', line 682 static VALUE conmode_set_echo(VALUE obj, VALUE f) { conmode *t = rb_check_typeddata(obj, &conmode_type); if (RTEST(f)) set_echo(t, NULL); else set_noecho(t, NULL); return obj; } |
#initialize_copy(obj2) ⇒ Object
673 674 675 676 677 678 679 680 |
# File 'console/console.c', line 673 static VALUE conmode_init_copy(VALUE obj, VALUE obj2) { conmode *t = rb_check_typeddata(obj, &conmode_type); conmode *t2 = rb_check_typeddata(obj2, &conmode_type); *t = *t2; return obj; } |
#raw(*args) ⇒ Object
703 704 705 706 707 708 709 710 711 712 |
# File 'console/console.c', line 703 static VALUE conmode_raw_new(int argc, VALUE *argv, VALUE obj) { conmode *r = rb_check_typeddata(obj, &conmode_type); conmode t = *r; rawmode_arg_t opts, *optp = rawmode_opt(&argc, argv, 0, 0, &opts); set_rawmode(&t, optp); return conmode_new(rb_obj_class(obj), &t); } |
#raw!(*args) ⇒ Object
693 694 695 696 697 698 699 700 701 |
# File 'console/console.c', line 693 static VALUE conmode_set_raw(int argc, VALUE *argv, VALUE obj) { conmode *t = rb_check_typeddata(obj, &conmode_type); rawmode_arg_t opts, *optp = rawmode_opt(&argc, argv, 0, 0, &opts); set_rawmode(t, optp); return obj; } |