| 398 | // Returns an array of void pointers to the elements of the given tuple. |
| 399 | template <typename... Ts> |
| 400 | std::array<void*, sizeof...(Ts)> GetArrayOfElementPointers( |
| 401 | std::tuple<Ts...>* tuple) { |
| 402 | return GetArrayOfElementPointersImpl(tuple, |
| 403 | absl::index_sequence_for<Ts...>{}); |
| 404 | } |
| 405 | |
| 406 | template <bool...> |
| 407 | struct BoolPack; |
no test coverage detected