| 11132 | private: |
| 11133 | template <typename T, size_t... I> |
| 11134 | std::vector<T> MakeVector(IndexSequence<I...>) const { |
| 11135 | return std::vector<T>{static_cast<T>(v_.template Get<I>())...}; |
| 11136 | } |
| 11137 | |
| 11138 | FlatTuple<Ts...> v_; |
| 11139 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected