method
eql?
v2_6_3 -
Show latest stable
- Class:
String
eql?(p1)public
No documentation available.
VALUE
rb_str_eql(VALUE str1, VALUE str2)
{
if (str1 == str2) return Qtrue;
if (!RB_TYPE_P(str2, T_STRING)) return Qfalse;
return str_eql(str1, str2);
}