/* Some tuple internals for inclusion from various headers. Partially * taken from the libc++ project. * * This file is part of OctaSTD. See COPYING.md for futher information. */ #ifndef OSTD_INTERNAL_TUPLE_HH #define OSTD_INTERNAL_TUPLE_HH #include #include namespace ostd { /* is tuple-like */ template constexpr bool IsTupleLike = false; template constexpr bool IsTupleLike = IsTupleLike; template constexpr bool IsTupleLike = IsTupleLike; template constexpr bool IsTupleLike = IsTupleLike; template constexpr bool IsTupleLike> = true; template constexpr bool IsTupleLike> = true; } /* namespace ostd */ #endif