mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 15:35:41 +00:00
12 lines
133 B
Go
12 lines
133 B
Go
package utils
|
|
|
|
import (
|
|
"cmp"
|
|
"slices"
|
|
)
|
|
|
|
func DedupeSlice[T cmp.Ordered](s []T) []T {
|
|
slices.Sort(s)
|
|
return slices.Compact(s)
|
|
}
|