time.Time.Nanosecond (method)

10 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/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)