+1
-1
@@ -22,7 +22,7 @@ func (s Set) Size() int {
|
||||
func (s Set) Keys() []interface{} {
|
||||
keys := make([]interface{}, 0)
|
||||
|
||||
for k, _ := range s {
|
||||
for k := range s {
|
||||
keys = append(keys, k)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user