= private = protected
size()
Returns the length of str.
/* * call-seq: * str.length => integer * * Returns the length of <i>str</i>. */ static VALUE rb_str_length(str) VALUE str; { return LONG2NUM(RSTRING(str)->len); }