Uids returns all the uids in the pb.UidPack object as an array of integers. uids are owned by the Decoder, and the slice contents would be changed on the next call. They should be copied if passed around.
()
| 340 | // uids are owned by the Decoder, and the slice contents would be changed on the next call. They |
| 341 | // should be copied if passed around. |
| 342 | func (d *Decoder) Uids() []uint64 { |
| 343 | return d.uids |
| 344 | } |
| 345 | |
| 346 | // LinearSeek returns uids of the last block whose base is less than seek. |
| 347 | // If there are no such blocks i.e. seek < base of first block, it returns uids of first |
no outgoing calls
no test coverage detected