Searched refs:DexIndex (Results 1 – 1 of 1) sorted by relevance
30 class DexIndex {34 constexpr DexIndex() : index_(std::numeric_limits<decltype(index_)>::max()) {} in DexIndex() function35 explicit constexpr DexIndex(T idx) : index_(idx) {} in DexIndex() function40 static constexpr DexIndex Invalid() { in Invalid()41 return DexIndex(std::numeric_limits<decltype(index_)>::max()); in Invalid()43 bool operator==(const DexIndex& other) const {46 bool operator!=(const DexIndex& other) const {49 bool operator<(const DexIndex& other) const {52 bool operator<=(const DexIndex& other) const {55 bool operator>(const DexIndex& other) const {[all …]