Decode Binary Value from wire format
(data []byte)
| 706 | |
| 707 | // Decode Binary Value from wire format |
| 708 | func (Binary) decode(data []byte) (Value, error) { |
| 709 | return Binary(data), nil |
| 710 | } |
| 711 | |
| 712 | // Collection is the Value that represents collection of attributes |
| 713 | // |