= private = protected
eql?(p1)
Two strings are equal if they have the same length and content.
static VALUE rb_str_eql(VALUE str1, VALUE str2) { if (TYPE(str2) != T_STRING) return Qfalse; return str_eql(str1, str2); }