MCPcopy Create free account
hub / github.com/brimdata/super / Equal

Method Equal

order/sortkey.go:34–38  ·  view source on GitHub ↗
(to SortKeys)

Source from the content-addressed store, hash-verified

32func (s SortKeys) IsNil() bool { return len(s) == 0 }
33
34func (s SortKeys) Equal(to SortKeys) bool {
35 return slices.EqualFunc(s, to, func(a, b SortKey) bool {
36 return a.Equal(b)
37 })
38}
39
40func ParseSortKeys(s string) (SortKeys, error) {
41 if s == "" {

Callers 1

propagateSortKeyOpMethod · 0.95

Calls 1

EqualMethod · 0.45

Tested by

no test coverage detected