NewBinaryEncoder returns an Encoder that writes a binary property list to w.
(w io.Writer)
| 73 | |
| 74 | // NewBinaryEncoder returns an Encoder that writes a binary property list to w. |
| 75 | func NewBinaryEncoder(w io.Writer) *Encoder { |
| 76 | return NewEncoderForFormat(w, BinaryFormat) |
| 77 | } |
| 78 | |
| 79 | // Marshal returns the property list encoding of v in the specified format. |
| 80 | // |