1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 00:22:41 +08:00
Files
go-mixed/sets/sorted_set.go
2022-05-04 23:45:53 +08:00

9 lines
84 B
Go

package sets
type sorted_set[T comparable] struct {
sorted []T
set Set[T]
}