const regexp/syntax.OpRepeat
13 uses
regexp/syntax (current package)
op_string.go#L27: _ = x[OpRepeat-17]
parse.go#L179: if re.Op == OpRepeat {
parse.go#L238: case OpRepeat:
parse.go#L439: if op == OpRepeat && (min >= 2 || max >= 2) && !repeatIsValid(re, 1000) {
parse.go#L456: if re.Op == OpRepeat {
parse.go#L683: (isCharClass(first) || (first.Op == OpRepeat && first.Min == first.Max && isCharClass(first.Sub[0]))) {
parse.go#L999: op = OpRepeat
regexp.go#L55: OpRepeat // matches Sub[0] at least Min times, at most Max (Max == -1 is no limit)
regexp.go#L102: case OpRepeat:
regexp.go#L197: case OpStar, OpPlus, OpQuest, OpRepeat:
regexp.go#L212: case OpRepeat:
simplify.go#L41: case OpRepeat:
regexp
regexp.go#L292: case syntax.OpRepeat:
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |