()
| 183 | } |
| 184 | |
| 185 | func (list *BLLs) ToBytes() (result []byte) { |
| 186 | list.Range(func(bll *BLL) bool { |
| 187 | result = append(result, bll.ToBytes()...) |
| 188 | return true |
| 189 | }) |
| 190 | return |
| 191 | } |
| 192 | |
| 193 | func (list *BLLs) Recycle() { |
| 194 | list.Range(func(bll *BLL) bool { |