Ruby Newbie homepage Ruby Newbie homepage

How to use

Quick guide

Official content
Equivalent to sym.to_s.upcase.to_sym.
 
               static VALUE
sym_upcase(int argc, VALUE *argv, VALUE sym)
{
    return rb_str_intern(rb_str_upcase(argc, argv, rb_sym2str(sym)));
}
            

Was this page useful?