kubernetes/vendor/golang.org/x/mod/internal/lazyregexp/lazyre.go

type Regexp

func (r *Regexp) re() *regexp.Regexp {}

func (r *Regexp) build() {}

func (r *Regexp) FindSubmatch(s []byte) [][]byte {}

func (r *Regexp) FindStringSubmatch(s string) []string {}

func (r *Regexp) FindStringSubmatchIndex(s string) []int {}

func (r *Regexp) ReplaceAllString(src, repl string) string {}

func (r *Regexp) FindString(s string) string {}

func (r *Regexp) FindAllString(s string, n int) []string {}

func (r *Regexp) MatchString(s string) bool {}

func (r *Regexp) SubexpNames() []string {}

var inTest

// New creates a new lazy regexp, delaying the compiling work until it is first
// needed. If the code is being run as part of tests, the regexp compiling will
// happen immediately.
func New(str string) *Regexp {}