(queue *BytesQueue, index int)
| 458 | } |
| 459 | |
| 460 | func get(queue *BytesQueue, index int) []byte { |
| 461 | entry, err := queue.Get(index) |
| 462 | if err != nil { |
| 463 | panic(err) |
| 464 | } |
| 465 | return entry |
| 466 | } |
| 467 | |
| 468 | func blob(char byte, len int) []byte { |
| 469 | return bytes.Repeat([]byte{char}, len) |