mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
add Sprout.Weed ->* Attribute-conversion
This commit is contained in:
parent
fa3851227e
commit
3a968fa5ac
35 changed files with 369 additions and 112 deletions
|
@ -4,7 +4,7 @@
|
|||
#include <cstddef>
|
||||
#include <type_traits>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/tuple/tuple.hpp>
|
||||
#include <sprout/utility/move.hpp>
|
||||
#include <sscrisk/cel/array.hpp>
|
||||
|
||||
namespace sprout {
|
||||
|
@ -13,18 +13,21 @@ namespace sprout {
|
|||
// get
|
||||
//
|
||||
template<std::size_t I, typename T, std::size_t N>
|
||||
T& get(sscrisk::cel::array<T, N>& t) SPROUT_NOEXCEPT {
|
||||
inline SPROUT_CONSTEXPR T&
|
||||
get(sscrisk::cel::array<T, N>& t) SPROUT_NOEXCEPT {
|
||||
static_assert(I < N, "get: index out of range");
|
||||
return t[I];
|
||||
}
|
||||
template<std::size_t I, typename T, std::size_t N>
|
||||
SPROUT_CONSTEXPR T const& get(sscrisk::cel::array<T, N> const& t) SPROUT_NOEXCEPT {
|
||||
inline SPROUT_CONSTEXPR T const&
|
||||
get(sscrisk::cel::array<T, N> const& t) SPROUT_NOEXCEPT {
|
||||
static_assert(I < N, "get: index out of range");
|
||||
return t[I];
|
||||
}
|
||||
template<std::size_t I, typename T, std::size_t N>
|
||||
T&& get(sscrisk::cel::array<T, N>&& t) SPROUT_NOEXCEPT {
|
||||
return std::move(sprout::tuples::get<I>(t));
|
||||
inline SPROUT_CONSTEXPR T&&
|
||||
get(sscrisk::cel::array<T, N>&& t) SPROUT_NOEXCEPT {
|
||||
return sprout::move(sprout::tuples::get<I>(t));
|
||||
}
|
||||
} // namespace tuples
|
||||
|
||||
|
|
|
@ -3,9 +3,10 @@
|
|||
|
||||
#include <cstddef>
|
||||
#include <type_traits>
|
||||
#include <sscrisk/cel/utility.hpp>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/tuple/tuple.hpp>
|
||||
#include <sscrisk/cel/utility.hpp>
|
||||
#include <sprout/utility/move.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace tuples {
|
||||
|
@ -48,10 +49,10 @@ namespace sprout {
|
|||
template<typename T1, typename T2>
|
||||
struct get_impl<0, sscrisk::cel::pair<T1, T2> > {
|
||||
public:
|
||||
T1& operator()(sscrisk::cel::pair<T1, T2>& t) const {
|
||||
SPROUT_CONSTEXPR T1& operator()(sscrisk::cel::pair<T1, T2>& t) const {
|
||||
return t.first;
|
||||
}
|
||||
T1 const& operator()(sscrisk::cel::pair<T1, T2> const& t) const {
|
||||
SPROUT_CONSTEXPR T1 const& operator()(sscrisk::cel::pair<T1, T2> const& t) const {
|
||||
return t.first;
|
||||
}
|
||||
};
|
||||
|
@ -59,36 +60,30 @@ namespace sprout {
|
|||
struct get_impl<1, sscrisk::cel::pair<T1, T2> > {
|
||||
public:
|
||||
public:
|
||||
T2& operator()(sscrisk::cel::pair<T1, T2>& t) const {
|
||||
SPROUT_CONSTEXPR T2& operator()(sscrisk::cel::pair<T1, T2>& t) const {
|
||||
return t.second;
|
||||
}
|
||||
T2 const& operator()(sscrisk::cel::pair<T1, T2> const& t) const {
|
||||
SPROUT_CONSTEXPR T2 const& operator()(sscrisk::cel::pair<T1, T2> const& t) const {
|
||||
return t.second;
|
||||
}
|
||||
};
|
||||
} // namespace detail
|
||||
template<std::size_t I, typename T1, typename T2>
|
||||
typename sprout::tuples::tuple_element<I, sscrisk::cel::pair<T1, T2> >::type& get(
|
||||
sscrisk::cel::pair<T1, T2>& t
|
||||
) SPROUT_NOEXCEPT
|
||||
{
|
||||
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sscrisk::cel::pair<T1, T2> >::type&
|
||||
get(sscrisk::cel::pair<T1, T2>& t) SPROUT_NOEXCEPT {
|
||||
static_assert(I < 2, "get: index out of range");
|
||||
return sprout::tuples::detail::get_impl<I, sscrisk::cel::pair<T1, T2> >()(t);
|
||||
}
|
||||
template<std::size_t I, typename T1, typename T2>
|
||||
SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sscrisk::cel::pair<T1, T2> >::type const& get(
|
||||
sscrisk::cel::pair<T1, T2> const& t
|
||||
) SPROUT_NOEXCEPT
|
||||
{
|
||||
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sscrisk::cel::pair<T1, T2> >::type const&
|
||||
get(sscrisk::cel::pair<T1, T2> const& t) SPROUT_NOEXCEPT {
|
||||
static_assert(I < 2, "get: index out of range");
|
||||
return sprout::tuples::detail::get_impl<I, sscrisk::cel::pair<T1, T2> >()(t);
|
||||
}
|
||||
template<std::size_t I, typename T1, typename T2>
|
||||
typename sprout::tuples::tuple_element<I, sscrisk::cel::pair<T1, T2> >::type&& get(
|
||||
sscrisk::cel::pair<T1, T2>&& t
|
||||
) SPROUT_NOEXCEPT
|
||||
{
|
||||
return std::move(sprout::tuples::get<I>(t));
|
||||
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sscrisk::cel::pair<T1, T2> >::type&&
|
||||
get(sscrisk::cel::pair<T1, T2>&& t) SPROUT_NOEXCEPT {
|
||||
return sprout::move(sprout::tuples::get<I>(t));
|
||||
}
|
||||
} // namespace tuples
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue