mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
1ef8a6a63b
support conversion array-like container iterator to pointer
116 lines
3.7 KiB
C++
116 lines
3.7 KiB
C++
#ifndef SPROUT_WEED_DETAIL_ODIGITS_HPP
|
|
#define SPROUT_WEED_DETAIL_ODIGITS_HPP
|
|
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/string.hpp>
|
|
#include <sprout/array/array.hpp>
|
|
#include <sprout/tuple/tuple.hpp>
|
|
#include <sprout/iterator/operation.hpp>
|
|
#include <sprout/algorithm/find.hpp>
|
|
|
|
namespace sprout {
|
|
namespace weed {
|
|
namespace detail {
|
|
template<typename Elem>
|
|
struct odigits;
|
|
|
|
template<>
|
|
struct odigits<char> {
|
|
public:
|
|
SPROUT_STATIC_CONSTEXPR sprout::basic_string<char, 8> table
|
|
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_INNER(sprout::to_string("01234567"))
|
|
;
|
|
};
|
|
SPROUT_CONSTEXPR_OR_CONST sprout::basic_string<char, 8> sprout::weed::detail::odigits<char>::table
|
|
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_OUTER(sprout::to_string("01234567"))
|
|
;
|
|
|
|
template<>
|
|
struct odigits<wchar_t> {
|
|
public:
|
|
SPROUT_STATIC_CONSTEXPR sprout::basic_string<wchar_t, 8> table
|
|
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_INNER(sprout::to_string(L"01234567"))
|
|
;
|
|
};
|
|
SPROUT_CONSTEXPR_OR_CONST sprout::basic_string<wchar_t, 8> sprout::weed::detail::odigits<wchar_t>::table
|
|
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_OUTER(sprout::to_string(L"01234567"))
|
|
;
|
|
|
|
#if SPROUT_USE_UNICODE_LITERALS
|
|
template<>
|
|
struct odigits<char16_t> {
|
|
public:
|
|
SPROUT_STATIC_CONSTEXPR sprout::basic_string<char16_t, 8> table
|
|
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_INNER(sprout::to_string(u"01234567"))
|
|
;
|
|
};
|
|
SPROUT_CONSTEXPR_OR_CONST sprout::basic_string<char16_t, 8> sprout::weed::detail::odigits<char16_t>::table
|
|
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_OUTER(sprout::to_string(u"01234567"))
|
|
;
|
|
|
|
template<>
|
|
struct odigits<char32_t> {
|
|
public:
|
|
SPROUT_STATIC_CONSTEXPR sprout::basic_string<char32_t, 8> table
|
|
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_INNER(sprout::to_string(U"01234567"))
|
|
;
|
|
};
|
|
SPROUT_CONSTEXPR_OR_CONST sprout::basic_string<char32_t, 8> sprout::weed::detail::odigits<char32_t>::table
|
|
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_OUTER(sprout::to_string(U"01234567"))
|
|
;
|
|
#endif
|
|
|
|
template<typename Dummy>
|
|
struct ovalues;
|
|
|
|
# define SPROUT_WEED_ODIGITS_TABLE_DEF \
|
|
table_type{{0, 1, 2, 3, 4, 5, 6, 7}}
|
|
|
|
template<>
|
|
struct ovalues<void> {
|
|
public:
|
|
typedef sprout::array<std::uint8_t, 8> table_type;
|
|
public:
|
|
SPROUT_STATIC_CONSTEXPR table_type table
|
|
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_INNER(SPROUT_WEED_ODIGITS_TABLE_DEF)
|
|
;
|
|
};
|
|
SPROUT_CONSTEXPR_OR_CONST sprout::weed::detail::ovalues<void>::table_type
|
|
sprout::weed::detail::ovalues<void>::table
|
|
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_OUTER(SPROUT_WEED_ODIGITS_TABLE_DEF)
|
|
;
|
|
|
|
# undef SPROUT_WEED_ODIGITS_TABLE_DEF
|
|
|
|
template<typename IntType>
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<IntType, bool> ovalue_at(std::size_t i) {
|
|
return i < 8
|
|
? sprout::tuples::tuple<IntType, bool>(
|
|
static_cast<IntType>(sprout::weed::detail::ovalues<void>::table[i]),
|
|
true
|
|
)
|
|
: sprout::tuples::tuple<IntType, bool>(
|
|
IntType(),
|
|
false
|
|
)
|
|
;
|
|
}
|
|
template<typename IntType, typename Elem>
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<IntType, bool> from_odigit(Elem c) {
|
|
return sprout::weed::detail::ovalue_at<IntType>(
|
|
sprout::distance(
|
|
sprout::weed::detail::odigits<Elem>::table.begin(),
|
|
sprout::find(
|
|
sprout::weed::detail::odigits<Elem>::table.begin(),
|
|
sprout::weed::detail::odigits<Elem>::table.end(),
|
|
c
|
|
)
|
|
)
|
|
);
|
|
}
|
|
} // namespace detail
|
|
} // namespace weed
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_WEED_DETAIL_ODIGITS_HPP
|