Method: Symbol#downcase
- Defined in:
- string.c
#downcase ⇒ Object
Same as sym.to_s.downcase.intern.
8897 8898 8899 8900 8901 |
# File 'string.c', line 8897
static VALUE
sym_downcase(VALUE sym)
{
return rb_str_intern(rb_str_downcase(rb_sym2str(sym)));
}
|