Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/time/format.go

    func startsWithLowerCase(str string) bool {
    	if len(str) == 0 {
    		return false
    	}
    	c := str[0]
    	return 'a' <= c && c <= 'z'
    }
    
    // nextStdChunk finds the first occurrence of a std string in
    // layout and returns the text before, the std string, and the text after.
    //
    // nextStdChunk should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top