1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 00:22:41 +08:00
This commit is contained in:
2022-05-04 23:45:53 +08:00
parent fd39c2951b
commit c3358a0bd6
3 changed files with 84 additions and 0 deletions

8
sets/sorted_set.go Normal file
View File

@ -0,0 +1,8 @@
package sets
type sorted_set[T comparable] struct {
sorted []T
set Set[T]
}