func time.norm
6 uses
time (current package)
time.go#L1312: func norm(hi, lo, base int) (nhi, nlo int) {
time.go#L1349: year, m = norm(year, m, 12)
time.go#L1353: sec, nsec = norm(sec, nsec, 1e9)
time.go#L1354: min, sec = norm(min, sec, 60)
time.go#L1355: hour, min = norm(hour, min, 60)
time.go#L1356: day, hour = norm(day, hour, 24)
 |
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. |