Method: String.try_convert
- Defined in:
- string.c
.try_convert(obj) ⇒ String?
1657 1658 1659 1660 1661 |
# File 'string.c', line 1657
static VALUE
rb_str_s_try_convert(VALUE dummy, VALUE str)
{
return rb_check_string_type(str);
}
|