()
| 30 | |
| 31 | func (s SortKeys) Primary() SortKey { return s[0] } |
| 32 | func (s SortKeys) IsNil() bool { return len(s) == 0 } |
| 33 | |
| 34 | func (s SortKeys) Equal(to SortKeys) bool { |
| 35 | return slices.EqualFunc(s, to, func(a, b SortKey) bool { |
no outgoing calls
no test coverage detected