Module: Polyfill::V2_4::Symbol::Instance::Match::Method
- Defined in:
- lib/polyfill/v2_4/symbol/instance/match.rb
Instance Method Summary collapse
Instance Method Details
#match(*args) ⇒ Object
7 8 9 10 11 12 13 |
# File 'lib/polyfill/v2_4/symbol/instance/match.rb', line 7 def match(*args) if block_given? to_s.match(*args, &Proc.new) else to_s.match(*args) end end |