Search Apps Documentation Source Content File Folder Download Copy Actions Download

helper.gno

0.08 Kb · 5 lines
1package btreeset
2
3func equalKey(a, b key) bool {
4	return !a.Less(b) && !b.Less(a)
5}