#ifndef SPROUT_WEED_PARSER_NUMERIC_UINT_HPP #define SPROUT_WEED_PARSER_NUMERIC_UINT_HPP #include #include #include #include #include namespace sprout { namespace weed { // // uint_ // SPROUT_STATIC_CONSTEXPR auto uint_ = sprout::weed::uint_p(-1)>(); // // uint8 // uint16 // uint32 // uint64 // SPROUT_STATIC_CONSTEXPR auto uint8 = sprout::weed::uint_p(); SPROUT_STATIC_CONSTEXPR auto uint16 = sprout::weed::uint_p(); SPROUT_STATIC_CONSTEXPR auto uint32 = sprout::weed::uint_p(); SPROUT_STATIC_CONSTEXPR auto uint64 = sprout::weed::uint_p(); } // namespace weed } // namespace sprout #endif // #ifndef SPROUT_WEED_PARSER_NUMERIC_UINT_HPP