Method: Symbol#match?
- Defined in:
- string.c
#match?(pattern, offset) ⇒ Boolean
Equivalent to sym.to_s.match?
; see String#match.
12289 12290 12291 12292 12293 |
# File 'string.c', line 12289
static VALUE
sym_match_m_p(int argc, VALUE *argv, VALUE sym)
{
return rb_str_match_m_p(argc, argv, sym);
}
|