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

     1  package regexnew
     2  
     3  import "regexp"
     4  
     5  type (
     6  	RegexValidationFunc func(regex *regexp.Regexp, lookingTerm string) bool
     7  	CustomizeErr        func(
     8  		regexPattern,
     9  		matchLookingTerm string,
    10  		err error,
    11  		regexp *regexp.Regexp,
    12  	) error
    13  )