Sprout/sprout/weed/detail/digits.hpp

78 lines
2.4 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2014-01-08 07:48:12 +00:00
Copyright (c) 2011-2014 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
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)
=============================================================================*/
2011-11-14 04:22:04 +00:00
#ifndef SPROUT_WEED_DETAIL_DIGITS_HPP
#define SPROUT_WEED_DETAIL_DIGITS_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/string.hpp>
2013-02-07 14:12:57 +00:00
#include <sprout/array/array.hpp>
2011-11-14 04:22:04 +00:00
#include <sprout/tuple/tuple.hpp>
#include <sprout/iterator/operation.hpp>
2013-01-11 19:08:44 +00:00
#include <sprout/algorithm/find.hpp>
#include <sprout/detail/literal_def.hpp>
2011-11-14 04:22:04 +00:00
namespace sprout {
namespace weed {
namespace detail {
SPROUT_LITERAL_STRING_DEF(digits, "0123456789", 10);
2011-11-14 04:22:04 +00:00
template<typename Dummy>
struct values;
# define SPROUT_WEED_DIGITS_TABLE_DEF \
2014-02-21 14:43:24 +00:00
{{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}}
2011-11-14 04:22:04 +00:00
template<>
struct values<void> {
public:
typedef sprout::array<std::uint8_t, 10> value_type;
public:
SPROUT_STATIC_CONSTEXPR value_type value
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_INNER(SPROUT_WEED_DIGITS_TABLE_DEF)
;
2011-11-14 04:22:04 +00:00
};
SPROUT_CONSTEXPR_OR_CONST sprout::weed::detail::values<void>::value_type
sprout::weed::detail::values<void>::value
SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_OUTER(SPROUT_WEED_DIGITS_TABLE_DEF)
;
# undef SPROUT_WEED_DIGITS_TABLE_DEF
2011-11-14 04:22:04 +00:00
template<typename IntType>
inline SPROUT_CONSTEXPR sprout::tuples::tuple<IntType, bool> value_at(std::size_t i) {
2011-11-14 04:22:04 +00:00
return i < 10
? sprout::tuples::tuple<IntType, bool>(
static_cast<IntType>(sprout::weed::detail::values<void>::value[i]),
2011-11-14 04:22:04 +00:00
true
)
: sprout::tuples::tuple<IntType, bool>(
IntType(),
false
)
;
}
template<typename IntType, typename Elem>
inline SPROUT_CONSTEXPR sprout::tuples::tuple<IntType, bool> from_digit(Elem c) {
2011-11-14 04:22:04 +00:00
return sprout::weed::detail::value_at<IntType>(
sprout::distance(
sprout::weed::detail::digits<Elem>::value.begin(),
2013-01-11 19:08:44 +00:00
sprout::find(
sprout::weed::detail::digits<Elem>::value.begin(),
sprout::weed::detail::digits<Elem>::value.end(),
2011-11-14 04:22:04 +00:00
c
)
)
);
}
} // namespace detail
} // namespace weed
} // namespace sprout
#endif // #ifndef SPROUT_WEED_DETAIL_DIGITS_HPP