#ifndef SPROUT_WEED_DETAIL_NDIGITS_HPP #define SPROUT_WEED_DETAIL_NDIGITS_HPP #include #include #include #include #include #include #include #include namespace sprout { namespace weed { namespace detail { template SPROUT_CONSTEXPR sprout::tuples::tuple from_ndigit( Elem c, typename std::enable_if::type* = 0 ) { return sprout::weed::detail::from_digit(c); } template SPROUT_CONSTEXPR sprout::tuples::tuple from_ndigit( Elem c, typename std::enable_if::type* = 0 ) { return sprout::weed::detail::from_bdigit(c); } template SPROUT_CONSTEXPR sprout::tuples::tuple from_ndigit( Elem c, typename std::enable_if::type* = 0 ) { return sprout::weed::detail::from_odigit(c); } template SPROUT_CONSTEXPR sprout::tuples::tuple from_ndigit( Elem c, typename std::enable_if::type* = 0 ) { return sprout::weed::detail::from_xdigit(c); } } // namespace detail } // namespace weed } // namespace sprout #endif // #ifndef SPROUT_WEED_DETAIL_NDIGITS_HPP