Versions in this module Expand all Collapse all v25 v25.1.0 Dec 11, 2025 Changes in this version + func ApplyFilter(u *pb.List, f func(uint64, int) bool) + func ApplyFilterPacked(u *pb.UidPack, f func(uint64, int) bool) *pb.UidPack + func Difference(u, v *pb.List) *pb.List + func DifferencePacked(u, v *pb.UidPack) *pb.UidPack + func IndexOf(u *pb.List, uid uint64) int + func IndexOfPacked(u *pb.UidPack, uid uint64) int + func IntersectCompressedWith(pack *pb.UidPack, afterUID uint64, v, o *pb.List) + func IntersectCompressedWithBin(dec *codec.Decoder, q []uint64, o *[]uint64) + func IntersectCompressedWithLinJump(dec *codec.Decoder, v []uint64, o *[]uint64) + func IntersectSorted(lists []*pb.List) *pb.List + func IntersectSortedPacked(lists []*pb.UidPack) *pb.UidPack + func IntersectWith(u, v, o *pb.List) + func IntersectWithBin(d, q []uint64, o *[]uint64) int + func IntersectWithJump(u, v []uint64, o *[]uint64) (int, int) + func IntersectWithLin(u, v []uint64, o *[]uint64) (int, int) + func IntersectWithLinPacked(u, v *pb.UidPack) *pb.UidPack + func MergeSorted(lists []*pb.List) *pb.List + func MergeSortedMoreMem(lists []*pb.List) *pb.List + func MergeSortedPacked(lists []*pb.UidPack) *pb.UidPack + func ToUintsListForTest(ul []*pb.List) [][]uint64 + type CountMinSketch struct + func NewCountMinSketch(epsilon, delta float64) *CountMinSketch + func (c *CountMinSketch) Add(data []byte) *CountMinSketch + func (c *CountMinSketch) AddInt(data []byte, n uint64) *CountMinSketch + func (c *CountMinSketch) Count(data []byte) uint64 + func (c *CountMinSketch) Delta() float64 + func (c *CountMinSketch) Epsilon() float64 + func (c *CountMinSketch) Merge(other *CountMinSketch) error + func (c *CountMinSketch) ReadDataFrom(stream io.Reader) (int, error) + func (c *CountMinSketch) Reset() *CountMinSketch + func (c *CountMinSketch) SetHash(h hash.Hash64) + func (c *CountMinSketch) TestAndRemove(data []byte, n uint64) bool + func (c *CountMinSketch) TestAndRemoveAll(data []byte) bool + func (c *CountMinSketch) TotalCount() uint64 + func (c *CountMinSketch) WriteDataTo(stream io.Writer) (int, error) v25.1.0-preview1 Dec 4, 2025 Other modules containing this package github.com/dgraph-io/dgraph github.com/dgraph-io/dgraph/v24