rushlink/gobmarsh/marshal.go
Daan Sprenkels a6edcd222e Add marshalling functions for gob
This removes a lot of the boilerplate code that comes with
(un)marshalling to gob encoding in Go.
2019-08-25 17:16:12 +02:00

21 lines
342 B
Go

package gobmarsh
import (
"bytes"
"encoding/gob"
)
func Marshal(v interface{}) ([]byte, error) {
b := new(bytes.Buffer)
err := gob.NewEncoder(b).Encode(v)
if err != nil {
return nil, err
}
return b.Bytes(), nil
}
func Unmarshal(data []byte, v interface{}) error {
b := bytes.NewBuffer(data)
return gob.NewDecoder(b).Decode(v)
}