(index int, n int)
| 288 | } |
| 289 | |
| 290 | func (list *BLL) GetUintN(index int, n int) (result uint32) { |
| 291 | for i := 0; i < n; i++ { |
| 292 | result += uint32(list.GetByte(index+i)) << ((n - i - 1) << 3) |
| 293 | } |
| 294 | return |
| 295 | } |
| 296 | |
| 297 | // func (b *Buffer) ToBuffers() (result net.Buffers) { |
| 298 | // for p := b.Next; p != &b.ListItem; p = p.Next { |
no test coverage detected