class Regexp

Public Instance Methods

matches?(string) click to toggle source
# File lib/mumukit/core/regexp.rb, line 2
def matches?(string)
  !!(self =~ string)
end