| 249:37d3c819cafa | 250:2837b549e616 |
|---|---|
| 13 | 13 |
| 14 namespace util { | 14 namespace util { |
| 15 | 15 |
| 16 template <std::size_t I, typename T> struct nth { | 16 template <std::size_t I, typename T> struct nth { |
| 17 inline static typename std::tuple_element<I, T>::type | 17 inline static typename std::tuple_element<I, T>::type |
| 18 get(const T& t) { return std::get<I>(t); }; | 18 get(const T& t) { return std::get<I>(t); } |
| 19 }; | 19 }; |
| 20 | 20 |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace detail { | 23 namespace detail { |