答案 0 :(得分:4)
您可以使用tcllib包::struct::set
。
答案 1 :(得分:1)
只需使用一个列表。
set example [list "key1" "key2" "key3"]
if {[lsearch -exact $example "key3"] != -1} {
puts "found your key!"
} else {
puts "your key is not in the list"
}
也许您应该提出更具体的问题以获得更准确的答案。
dict
的替代方法是array
,它不保留密钥的顺序。
答案 2 :(得分:0)
另一种方法是将所有内容累积为$bucket
。
然后做:
set uniqueItems [lsort -unique $bucket]