Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isModifier (0.09 sec)

  1. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    	}
    	if !p.checkJoiners {
    		return nil
    	}
    	trie := p.trie // p.checkJoiners is only set if trie is set.
    	// TODO: merge the use of this in the trie.
    	v, sz := trie.lookupString(s)
    	x := info(v)
    	if x.isModifier() {
    		return &labelError{s, "V5"}
    	}
    	// Quickly return in the absence of zero-width (non) joiners.
    	if strings.Index(s, zwj) == -1 && strings.Index(s, zwnj) == -1 {
    		return nil
    	}
    	st := stateStart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    	}
    	if !p.checkJoiners {
    		return nil
    	}
    	trie := p.trie // p.checkJoiners is only set if trie is set.
    	// TODO: merge the use of this in the trie.
    	v, sz := trie.lookupString(s)
    	x := info(v)
    	if x.isModifier() {
    		return &labelError{s, "V5"}
    	}
    	// Quickly return in the absence of zero-width (non) joiners.
    	if strings.Index(s, zwj) == -1 && strings.Index(s, zwnj) == -1 {
    		return nil
    	}
    	st := stateStart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top