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