#ifndef SPROUT_TUPLE_SSCRISK_CEL_UTILITY_HPP #define SPROUT_TUPLE_SSCRISK_CEL_UTILITY_HPP #include #include #include #include #include #include namespace sprout { namespace tuples { // // tuple_size // template struct tuple_size > : public std::integral_constant {}; namespace detail { template struct tuple_element_impl; template struct tuple_element_impl<0, sscrisk::cel::pair > { public: typedef T1 type; }; template struct tuple_element_impl<1, sscrisk::cel::pair > { public: typedef T2 type; }; } // namespace detail // // tuple_element // template struct tuple_element > : public sprout::tuples::detail::tuple_element_impl > {}; namespace detail { template struct get_impl; template struct get_impl<0, sscrisk::cel::pair > { public: SPROUT_CONSTEXPR T1& operator()(sscrisk::cel::pair& t) const { return t.first; } SPROUT_CONSTEXPR T1 const& operator()(sscrisk::cel::pair const& t) const { return t.first; } }; template struct get_impl<1, sscrisk::cel::pair > { public: public: SPROUT_CONSTEXPR T2& operator()(sscrisk::cel::pair& t) const { return t.second; } SPROUT_CONSTEXPR T2 const& operator()(sscrisk::cel::pair const& t) const { return t.second; } }; } // namespace detail } // namespace tuples } // namespace sprout namespace sprout_adl { // // tuple_get // template inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element >::type& tuple_get(sscrisk::cel::pair& t) SPROUT_NOEXCEPT { static_assert(I < 2, "tuple_get: index out of range"); return sprout::tuples::detail::get_impl >()(t); } template inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element >::type const& tuple_get(sscrisk::cel::pair const& t) SPROUT_NOEXCEPT { static_assert(I < 2, "tuple_get: index out of range"); return sprout::tuples::detail::get_impl >()(t); } template inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element >::type&& tuple_get(sscrisk::cel::pair&& t) SPROUT_NOEXCEPT { return sprout::move(sprout::tuples::get(t)); } } // namespace tuples using sprout::tuples::get; } // namespace sprout_adl #endif // #ifndef SPROUT_TUPLE_SSCRISK_CEL_UTILITY_HPP