Method: U::String#downcase
- Defined in:
- ext/u/rb_u_string_downcase.c
#downcase(locale = ENV['LC_CTYPE']) ⇒ U::String
9 10 11 12 13 |
# File 'ext/u/rb_u_string_downcase.c', line 9
VALUE
rb_u_string_downcase(int argc, VALUE *argv, VALUE self)
{
return _rb_u_string_convert_locale(argc, argv, self, u_downcase, NULL);
}
|