time.Time.nsec (method)
16 uses
time (current package)
time.go#L163: func (t *Time) nsec() int32 {
time.go#L247: return ts > us || ts == us && t.nsec() > u.nsec()
time.go#L257: return ts < us || ts == us && t.nsec() < u.nsec()
time.go#L269: return t.sec() == u.sec() && t.nsec() == u.nsec()
time.go#L427: return t.sec() == 0 && t.nsec() == 0
time.go#L570: return int(t.nsec())
time.go#L815: nsec := t.nsec() + int32(d%1e9)
time.go#L854: d := Duration(t.sec()-u.sec())*Second + Duration(t.nsec()-u.nsec())
time.go#L903: return Date(year+years, month+Month(months), day+days, hour, min, sec, int(t.nsec()), t.Location())
time.go#L1138: return (t.unixSec())*1e9 + int64(t.nsec())
time.go#L1162: nsec := t.nsec()
time.go#L1437: nsec := t.nsec()
 |
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. |