# File lib/ruby-vpi/vpi.rb, line 215 215: def [] *aTypes 216: handles = [] 217: 218: aTypes.each do |t| 219: t = resolve_prop_type(t) 220: 221: if itr = vpi_iterate(t, self) 222: while h = vpi_scan(itr) 223: handles << h 224: end 225: end 226: end 227: 228: handles 229: end