/*============================================================================= Copyright (c) 2011-2013 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 #include #include #include #include #include #include namespace sprout { namespace weed { namespace detail { template struct odigits; template<> struct odigits { public: SPROUT_STATIC_CONSTEXPR sprout::basic_string table SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_INNER(sprout::to_string("01234567")) ; }; SPROUT_CONSTEXPR_OR_CONST sprout::basic_string sprout::weed::detail::odigits::table SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_OUTER(sprout::to_string("01234567")) ; template<> struct odigits { public: SPROUT_STATIC_CONSTEXPR sprout::basic_string table SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_INNER(sprout::to_string(L"01234567")) ; }; SPROUT_CONSTEXPR_OR_CONST sprout::basic_string sprout::weed::detail::odigits::table SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_OUTER(sprout::to_string(L"01234567")) ; #if SPROUT_USE_UNICODE_LITERALS template<> struct odigits { public: SPROUT_STATIC_CONSTEXPR sprout::basic_string table SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_INNER(sprout::to_string(u"01234567")) ; }; SPROUT_CONSTEXPR_OR_CONST sprout::basic_string sprout::weed::detail::odigits::table SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_OUTER(sprout::to_string(u"01234567")) ; template<> struct odigits { public: SPROUT_STATIC_CONSTEXPR sprout::basic_string table SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_INNER(sprout::to_string(U"01234567")) ; }; SPROUT_CONSTEXPR_OR_CONST sprout::basic_string sprout::weed::detail::odigits::table SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_OUTER(sprout::to_string(U"01234567")) ; #endif template struct ovalues; # define SPROUT_WEED_ODIGITS_TABLE_DEF \ table_type{{0, 1, 2, 3, 4, 5, 6, 7}} template<> struct ovalues { public: typedef sprout::array 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::table_type sprout::weed::detail::ovalues::table SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_OUTER(SPROUT_WEED_ODIGITS_TABLE_DEF) ; # undef SPROUT_WEED_ODIGITS_TABLE_DEF template inline SPROUT_CONSTEXPR sprout::tuples::tuple ovalue_at(std::size_t i) { return i < 8 ? sprout::tuples::tuple( static_cast(sprout::weed::detail::ovalues::table[i]), true ) : sprout::tuples::tuple( IntType(), false ) ; } template inline SPROUT_CONSTEXPR sprout::tuples::tuple from_odigit(Elem c) { return sprout::weed::detail::ovalue_at( sprout::distance( sprout::weed::detail::odigits::table.begin(), sprout::find( sprout::weed::detail::odigits::table.begin(), sprout::weed::detail::odigits::table.end(), c ) ) ); } } // namespace detail } // namespace weed } // namespace sprout #endif // #ifndef SPROUT_WEED_DETAIL_ODIGITS_HPP