| 47 | // before passing it to this function. |
| 48 | template <typename OStream, typename... Args> |
| 49 | void PrintTuple(OStream* os, const std::tuple<Args&...>& tup) { |
| 50 | detail::TuplePrinter<OStream, std::tuple<Args&...>, sizeof...(Args)>::Print(os, tup); |
| 51 | } |
| 52 | |
| 53 | template <typename Range, typename Separator> |
| 54 | struct PrintVector { |
no test coverage detected