| 3104 | // } |
| 3105 | template <typename T, T... Ints> |
| 3106 | struct integer_sequence |
| 3107 | { |
| 3108 | using value_type = T; |
| 3109 | static constexpr std::size_t size() noexcept |
| 3110 | { |
| 3111 | return sizeof...(Ints); |
| 3112 | } |
| 3113 | }; |
| 3114 | |
| 3115 | // index_sequence |
| 3116 | // |
nothing calls this directly
no outgoing calls
no test coverage detected