# File typeprof-0.12.0/lib/typeprof/utils.rb, line 106 def <<(v) @hash[v] = true end
# File typeprof-0.12.0/lib/typeprof/utils.rb, line 110 def [](v) @hash[v] end
# File typeprof-0.12.0/lib/typeprof/utils.rb, line 114 def delete(v) @hash.delete(v) end
# File typeprof-0.12.0/lib/typeprof/utils.rb, line 100 def each(&blk) @hash.each_key(&blk) end
# File typeprof-0.12.0/lib/typeprof/utils.rb, line 118 def inspect s = [] each {|v| s << v.inspect } "{#{ s.join(", ") }}" end