Nim-lang 中的哈希集

Hashset in Nim-lang

我正在尝试使用 HashSet 类型的 nim-lang 但收到错误

var list = initSet\[int]()

错误是

Error: undeclared identifier: 'initSet'

我已经导入了哈希库

它在 sets module, not hashes.

import sets

proc sum(xs: HashSet[int]): int =
  for x in xs:
    result += x

var list = initHashSet[int]()
list.incl(10)
list.incl(20)
list.incl(30)

echo list.sum