(item *BLL)
| 145 | } |
| 146 | |
| 147 | func (list *BLLs) PushValue(item *BLL) { |
| 148 | if list == nil { |
| 149 | return |
| 150 | } |
| 151 | list.List.PushValue(item) |
| 152 | list.ByteLength += item.ByteLength |
| 153 | } |
| 154 | |
| 155 | func (list *BLLs) Push(item LIBP) { |
| 156 | if list == nil { |
no outgoing calls
no test coverage detected