| 133 | |
| 134 | template<int... values> |
| 135 | static constexpr auto |
| 136 | MakeIntItems(std::integer_sequence<int, values...>) noexcept |
| 137 | -> std::array<IntItem, sizeof...(values)> |
| 138 | { |
| 139 | return {values...}; |
| 140 | } |
| 141 | |
| 142 | TEST(IntrusiveTreeSet, RandomOrder) |
| 143 | { |