func time.isDigit
8 uses
time (current package)
format.go#L272: if !isDigit(layout, j) {
format.go#L707: func isDigit(s string, i int) bool {
format.go#L719: if !isDigit(s, 0) {
format.go#L722: if !isDigit(s, 1) {
format.go#L736: for i = 0; i < 3 && isDigit(s, i); i++ {
format.go#L882: if len(value) < 4 || !isDigit(value, 0) {
format.go#L943: if len(value) >= 2 && value[0] == '.' && isDigit(value, 1) {
format.go#L952: for ; n < len(value) && isDigit(value, n); n++ {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |