Method: CharacterSet#>
- Defined in:
- ext/character_set/character_set.c
#>(other) ⇒ Object
670 671 672 673 674 675 676 |
# File 'ext/character_set/character_set.c', line 670
static VALUE
cs_method_proper_superset_p(VALUE self, VALUE other)
{
int is_superset, is_proper;
is_superset = cs_a_subset_of_b(other, self, &is_proper);
return (is_superset && is_proper) ? Qtrue : Qfalse;
}
|