| 3120 | // } |
| 3121 | template <typename T, T... Ints> |
| 3122 | struct integer_sequence |
| 3123 | { |
| 3124 | using value_type = T; |
| 3125 | static constexpr std::size_t size() noexcept |
| 3126 | { |
| 3127 | return sizeof...(Ints); |
| 3128 | } |
| 3129 | }; |
| 3130 | |
| 3131 | // index_sequence |
| 3132 | // |
nothing calls this directly
no outgoing calls
no test coverage detected