MCPcopy
hub / github.com/dgraph-io/dgraph / Uids

Method Uids

codec/codec.go:342–344  ·  view source on GitHub ↗

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.

()

Source from the content-addressed store, hash-verified

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.
342func (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

Callers 5

ApplyFilterPackedFunction · 0.95
IntersectWithLinPackedFunction · 0.95
DifferencePackedFunction · 0.95
MergeSortedPackedFunction · 0.95
IndexOfPackedFunction · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected