Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for watchable (0.1 sec)

  1. src/regexp/regexp.go

    func (re *Regexp) put(m *machine) {
    	m.re = nil
    	m.p = nil
    	m.inputs.clear()
    	matchPool[re.mpool].Put(m)
    }
    
    // minInputLen walks the regexp to find the minimum length of any matchable input.
    func minInputLen(re *syntax.Regexp) int {
    	switch re.Op {
    	default:
    		return 0
    	case syntax.OpAnyChar, syntax.OpAnyCharNotNL, syntax.OpCharClass:
    		return 1
    	case syntax.OpLiteral:
    		l := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top