Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Night (0.18 sec)

  1. src/bytes/bytes.go

    		}
    		a[na] = s[fieldStart:i:i]
    		na++
    		i++
    		// Skip spaces in between fields.
    		for i < len(s) && asciiSpace[s[i]] != 0 {
    			i++
    		}
    		fieldStart = i
    	}
    	if fieldStart < len(s) { // Last field might end at EOF.
    		a[na] = s[fieldStart:len(s):len(s)]
    	}
    	return a
    }
    
    // FieldsFunc interprets s as a sequence of UTF-8-encoded code points.
    // It splits the slice s at each run of code points c satisfying f(c) and
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
Back to top