Module: IO::generic_readable

Defined in:
ext/io/console/console.c

Instance Method Summary collapse

Instance Method Details

#getch(min: nil, time: nil, intr: nil) ⇒ String

See IO#getch.

Returns:

  • (String)


1522
1523
1524
1525
1526
# File 'ext/io/console/console.c', line 1522

static VALUE
io_getch(int argc, VALUE *argv, VALUE io)
{
    return rb_funcallv(io, id_getc, argc, argv);
}

#getpass(prompt = nil) ⇒ String

See IO#getpass.

Returns:

  • (String)


1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
# File 'ext/io/console/console.c', line 1605

static VALUE
io_getpass(int argc, VALUE *argv, VALUE io)
{
    VALUE str;

    rb_check_arity(argc, 0, 1);
    prompt(argc, argv, io);
    rb_check_funcall(io, id_flush, 0, 0);
    str = rb_ensure(gets_call, io, puts_call, io);
    return str_chomp(str);
}