mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
77 lines
2.4 KiB
C++
77 lines
2.4 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2015 Bolero MURAKAMI
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
=============================================================================*/
|
|
#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>
|
|
#include <sprout/detail/literal_def.hpp>
|
|
|
|
namespace sprout {
|
|
namespace weed {
|
|
namespace detail {
|
|
SPROUT_LITERAL_STRING_DEF(odigits, "01234567", 8);
|
|
|
|
template<typename Dummy>
|
|
struct ovalues;
|
|
|
|
# define SPROUT_WEED_ODIGITS_TABLE_DEF \
|
|
{{0, 1, 2, 3, 4, 5, 6, 7}}
|
|
|
|
template<>
|
|
struct ovalues<void> {
|
|
public:
|
|
typedef sprout::array<std::uint8_t, 8> value_type;
|
|
public:
|
|
SPROUT_STATIC_CONSTEXPR value_type value
|
|
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_INNER(SPROUT_WEED_ODIGITS_TABLE_DEF)
|
|
;
|
|
};
|
|
SPROUT_CONSTEXPR_OR_CONST sprout::weed::detail::ovalues<void>::value_type
|
|
sprout::weed::detail::ovalues<void>::value
|
|
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>::value[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>::value.begin(),
|
|
sprout::find(
|
|
sprout::weed::detail::odigits<Elem>::value.begin(),
|
|
sprout::weed::detail::odigits<Elem>::value.end(),
|
|
c
|
|
)
|
|
)
|
|
);
|
|
}
|
|
} // namespace detail
|
|
} // namespace weed
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_WEED_DETAIL_ODIGITS_HPP
|