= private = protected
bytesize()
Returns the length of str in bytes.
"\x80\u3042".bytesize #=> 4 "hello".bytesize #=> 5
static VALUE rb_str_bytesize(VALUE str) { return LONG2NUM(RSTRING_LEN(str)); }