From 625f12a793b09d3739538a1906d06b6c2978fac8 Mon Sep 17 00:00:00 2001 From: Ge Song Date: Fri, 7 Apr 2023 23:30:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B3=A8=E9=87=8A=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E9=94=99=E5=AD=97;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mapset/mapset.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapset/mapset.go b/mapset/mapset.go index 8535146..e7437a7 100644 --- a/mapset/mapset.go +++ b/mapset/mapset.go @@ -14,7 +14,7 @@ func New[T comparable](keys ...T) MapSet[T] { return s } -// MapSet 是集合的范型实现 +// MapSet 是集合的 generics 实现 type MapSet[T comparable] map[T]struct{} // Cardinality 返回集合的元素个数