(w io.Writer)
| 251 | } |
| 252 | |
| 253 | func (list *BLL) WriteTo(w io.Writer) (int64, error) { |
| 254 | t := list.ToBuffers() |
| 255 | return t.WriteTo(w) |
| 256 | } |
| 257 | |
| 258 | func (list *BLL) ToBytes() (b []byte) { |
| 259 | b = make([]byte, 0, list.ByteLength) |
no test coverage detected