Method: Symbol#length
- Defined in:
- string.c
#length ⇒ Integer
Equivalent to self.to_s.length; see String#length.
12324 12325 12326 12327 12328 |
# File 'string.c', line 12324
static VALUE
sym_length(VALUE sym)
{
return rb_str_length(rb_sym2str(sym));
}
|