Searched defs:IndexedSet (Results 1 – 1 of 1) sorted by relevance
36 struct IndexedSet { struct37 IndexedSet() { Map.reserve(N); } in IndexedSet() function39 T get(uint32_t Idx) const { in get()45 uint32_t insert(T Val) { in insert()54 uint32_t find(T Val) const { in find()60 uint32_t size() const { return Map.size(); } in size()62 using const_iterator = typename std::vector<T>::const_iterator;64 const_iterator begin() const { return Map.begin(); } in begin()65 const_iterator end() const { return Map.end(); } in end()