Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for compInfo (0.12 sec)

  1. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	v, sz := b.charinfoNFC(i)
    	return compInfo(v, sz)
    }
    
    func lookupInfoNFKC(b input, i int) Properties {
    	v, sz := b.charinfoNFKC(i)
    	return compInfo(v, sz)
    }
    
    // Properties returns properties for the first rune in s.
    func (f Form) Properties(s []byte) Properties {
    	if f == NFC || f == NFD {
    		return compInfo(nfcData.lookup(s))
    	}
    	return compInfo(nfkcData.lookup(s))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	v, sz := b.charinfoNFC(i)
    	return compInfo(v, sz)
    }
    
    func lookupInfoNFKC(b input, i int) Properties {
    	v, sz := b.charinfoNFKC(i)
    	return compInfo(v, sz)
    }
    
    // Properties returns properties for the first rune in s.
    func (f Form) Properties(s []byte) Properties {
    	if f == NFC || f == NFD {
    		return compInfo(nfcData.lookup(s))
    	}
    	return compInfo(nfkcData.lookup(s))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top