Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for lookupValue (0.52 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/prop.go

    		if len(s) < 2 {
    			return Properties{}, 0
    		}
    		i := bidiIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return Properties{}, 1
    		}
    		return Properties{entry: trie.lookupValue(uint32(i), c1)}, 2
    	case c0 < 0xF0: // 3-byte UTF-8
    		if len(s) < 3 {
    			return Properties{}, 0
    		}
    		i := bidiIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return Properties{}, 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 5.7K bytes
    - Viewed (0)
Back to top