gitlab.com/evatix-go/core@v1.3.55/regexnew/IsMatchFailed.go (about)

     1  package regexnew
     2  
     3  // IsMatchFailed creates new regex using lock
     4  // and then calls match
     5  // if doesn't match returns true
     6  func IsMatchFailed(regex, comparing string) bool {
     7  	return !IsMatchLock(regex, comparing)
     8  }