| 3114 | // } |
| 3115 | template <typename T, T... Ints> |
| 3116 | struct integer_sequence |
| 3117 | { |
| 3118 | using value_type = T; |
| 3119 | static constexpr std::size_t size() noexcept |
| 3120 | { |
| 3121 | return sizeof...(Ints); |
| 3122 | } |
| 3123 | }; |
| 3124 | |
| 3125 | // index_sequence |
| 3126 | // |
nothing calls this directly
no outgoing calls
no test coverage detected