Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cccAbove (0.14 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    // cccZero (0) and cccAbove (230). If the value is cccOther, it means that
    // CCC(r) > 0, but not 230. A value of cccBreak means that CCC(r) == 0 and that
    // the rune also has the break category Break (see below).
    const (
    	cccBreak info = iota << 4
    	cccZero
    	cccAbove
    	cccOther
    
    	cccMask = cccBreak | cccZero | cccAbove | cccOther
    )
    
    const (
    	starter       = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/map.go

    				c.unreadRune()
    				return true
    
    			// We don't need to test for IotaSubscript as the only rune that
    			// qualifies (U+0345) was already excluded in the switch statement
    			// above. See A.4.
    
    			case cccAbove:
    				return c.copy()
    			default:
    				// Some other modifier. We're still allowed to gobble Greek
    				// modifiers after this.
    				c.copy()
    			}
    		}
    	}
    	return i == maxIgnorable
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top