time.Time.Nanosecond (method)

20 uses

	time (current package)
		format.go#L602: 	buf = appendInt(buf, t.Nanosecond(), 0)
		format.go#L832: 			b = appendNano(b, t.Nanosecond(), std)
		format_rfc3339.go#L41: 		b = appendNano(b, t.Nanosecond(), std)
		time.go#L897: func (t Time) Nanosecond() int {

	github.com/jackc/pgx/v5/pgtype
		builtin_wrappers.go#L494: 		int64(t.Nanosecond())/1000
		timestamp.go#L179: 		microsecSinceUnixEpoch := t.Unix()*1_000_000 + int64(t.Nanosecond())/1000
		timestamp.go#L214: 			t = time.Date(year, t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), time.UTC)
		timestamp.go#L236: 		return time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), time.UTC)
		timestamp.go#L286: 			tim = time.Date(tim.Year(), tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), plan.location)
		timestamp.go#L323: 			tim = time.Date(year, tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), tim.Location())
		timestamp.go#L327: 			tim = time.Date(tim.Year(), tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), plan.location)
		timestamptz.go#L177: 		microsecSinceUnixEpoch := ts.Time.Unix()*1000000 + int64(ts.Time.Nanosecond())/1000
		timestamptz.go#L213: 			t = time.Date(year, t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), time.UTC)
		timestamptz.go#L324: 			tim = time.Date(year, tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), tim.Location())

	github.com/robfig/cron/v3
		constantdelay.go#L26: 	return t.Add(schedule.Delay - time.Duration(t.Nanosecond())*time.Nanosecond)
		spec.go#L82: 	t = t.Add(1*time.Second - time.Duration(t.Nanosecond())*time.Nanosecond)

	golang.org/x/sys/unix
		timestruct.go#L31: 	nsec := int64(t.Nanosecond())

	google.golang.org/protobuf/encoding/protojson
		well_known_types.go#L824: 	m.Set(fdNanos, protoreflect.ValueOfInt32(int32(t.Nanosecond())))

	google.golang.org/protobuf/types/known/timestamppb
		timestamp.pb.go#L195: 	return &Timestamp{Seconds: int64(t.Unix()), Nanos: int32(t.Nanosecond())}

	log
		log.go#L140: 				itoa(buf, t.Nanosecond()/1e3, 6)