Method: Symbol#length

Defined in:
string.c

#lengthInteger

Equivalent to self.to_s.length; see String#length.

Returns:



12320
12321
12322
12323
12324
# File 'string.c', line 12320

static VALUE
sym_length(VALUE sym)
{
    return rb_str_length(rb_sym2str(sym));
}