MCPcopy
hub / github.com/shopspring/decimal / GobEncode

Method GobEncode

decimal.go:1892–1894  ·  view source on GitHub ↗

GobEncode implements the gob.GobEncoder interface for gob serialization.

()

Source from the content-addressed store, hash-verified

1890
1891// GobEncode implements the gob.GobEncoder interface for gob serialization.
1892func (d Decimal) GobEncode() ([]byte, error) {
1893 return d.MarshalBinary()
1894}
1895
1896// GobDecode implements the gob.GobDecoder interface for gob serialization.
1897func (d *Decimal) GobDecode(data []byte) error {

Callers 2

TestGobEncodeFunction · 0.80
MarshalBinaryMethod · 0.80

Calls 1

MarshalBinaryMethod · 0.95

Tested by 1

TestGobEncodeFunction · 0.64