Method: Symbol#length

Defined in:
string.c

#lengthInteger

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

Returns:



12324
12325
12326
12327
12328
# File 'string.c', line 12324

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