module Axiom::Function::Predicate::NoMatch::Methods
Public Instance Methods
no_match(regexp)
click to toggle source
Compare the left to see if does not match the right
@example
no_match = expression.no_match(regexp)
@param [Regexp] regexp
@return [NoMatch]
@api public
# File lib/axiom/function/predicate/no_match.rb, line 62 def no_match(regexp) NoMatch.new(self, regexp) end