method
casecmp
v1_9_1_378 -
Show latest stable
- Class:
Symbol
casecmp(p1)public
No documentation available.
static VALUE
sym_casecmp(VALUE sym, VALUE other)
{
if (!SYMBOL_P(other)) {
return Qnil;
}
return rb_str_casecmp(rb_sym_to_s(sym), rb_sym_to_s(other));
}