Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for makeASCIISet (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/bytes/bytes.go

    // of memory is a worthwhile tradeoff for the simpler, faster code.
    type asciiSet [256]bool
    
    // makeASCIISet creates a set of ASCII characters and reports whether all
    // characters in chars are ASCII.
    func makeASCIISet(chars string) (as asciiSet, ok bool) {
    	for i := 0; i < len(chars); i++ {
    		c := chars[i]
    		if c >= utf8.RuneSelf {
    			return as, false
    		}
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Mar 12 17:56:55 GMT 2026
    - 36.3K bytes
    - Click Count (0)
Back to Top