mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-16 14:15:26 -06:00
21 lines
329 B
C++
21 lines
329 B
C++
#pragma once
|
|
|
|
#include <algorithm>
|
|
#include <cassert>
|
|
#include <cmath>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace mapbox {
|
|
|
|
namespace util {
|
|
|
|
template <std::size_t I, typename T> struct nth {
|
|
inline static typename std::tuple_element<I, T>::type
|
|
get(const T& t) { return std::get<I>(t); };
|
|
};
|
|
|
|
}
|
|
|
|
namespace detail {
|
|
|