MCPcopy Create free account
hub / github.com/tinylib/msgp / ReadTimeUTCBytes

Function ReadTimeUTCBytes

msgp/read_bytes.go:1070–1073  ·  view source on GitHub ↗

ReadTimeUTCBytes does the same as ReadTimeBytes, but returns the value as UTC.

(b []byte)

Source from the content-addressed store, hash-verified

1068
1069// ReadTimeUTCBytes does the same as ReadTimeBytes, but returns the value as UTC.
1070func ReadTimeUTCBytes(b []byte) (t time.Time, o []byte, err error) {
1071 t, o, err = ReadTimeBytes(b)
1072 return t.UTC(), o, err
1073}
1074
1075// ReadTimeBytes reads a time.Time
1076// extension object from 'b' and returns the

Callers 1

FuzzReadBytesFunction · 0.85

Calls 1

ReadTimeBytesFunction · 0.85

Tested by 1

FuzzReadBytesFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…