Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsLower (0.35 sec)

  1. src/bytes/bytes.go

    func TrimSpace(s []byte) []byte {
    	// Fast path for ASCII: look for the first ASCII non-space byte.
    	for lo, c := range s {
    		if c >= utf8.RuneSelf {
    			// If we run into a non-ASCII byte, fall back to the
    			// slower unicode-aware method on the remaining bytes.
    			return TrimFunc(s[lo:], unicode.IsSpace)
    		}
    		if asciiSpace[c] != 0 {
    			continue
    		}
    		s = s[lo:]
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Sep 03 14:04:47 UTC 2025
    - 35.5K bytes
    - Viewed (0)
Back to top