(enc *Encoder)
| 52 | } |
| 53 | |
| 54 | func PutEncoder(enc *Encoder) { |
| 55 | enc.w = nil |
| 56 | encPool.Put(enc) |
| 57 | } |
| 58 | |
| 59 | // Marshal returns the MessagePack encoding of v. |
| 60 | func Marshal(v interface{}) ([]byte, error) { |
no outgoing calls
no test coverage detected
searching dependent graphs…