mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
sprout/weed/parser/numeric/* 更新
This commit is contained in:
parent
34e2c4d45a
commit
ad94c0b247
11 changed files with 603 additions and 107 deletions
29
sprout/weed/parser/numeric/uint.hpp
Normal file
29
sprout/weed/parser/numeric/uint.hpp
Normal file
|
@ -0,0 +1,29 @@
|
|||
#ifndef SPROUT_WEED_PARSER_NUMERIC_UINT_HPP
|
||||
#define SPROUT_WEED_PARSER_NUMERIC_UINT_HPP
|
||||
|
||||
#include <cstdint>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/integer/integer_digits.hpp>
|
||||
#include <sprout/weed/parser/numeric/uint_p.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace weed {
|
||||
//
|
||||
// uint
|
||||
//
|
||||
SPROUT_STATIC_CONSTEXPR auto uint = sprout::weed::uint_p<std::uintmax_t, 10, -1>();
|
||||
|
||||
//
|
||||
// uint8
|
||||
// uint16
|
||||
// uint32
|
||||
// uint64
|
||||
//
|
||||
SPROUT_STATIC_CONSTEXPR auto uint8 = sprout::weed::uint_p<std::uint8_t, 10>();
|
||||
SPROUT_STATIC_CONSTEXPR auto uint16 = sprout::weed::uint_p<std::uint16_t, 10>();
|
||||
SPROUT_STATIC_CONSTEXPR auto uint32 = sprout::weed::uint_p<std::uint32_t, 10>();
|
||||
SPROUT_STATIC_CONSTEXPR auto uint64 = sprout::weed::uint_p<std::uint64_t, 10>();
|
||||
} // namespace weed
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_WEED_PARSER_NUMERIC_UINT_HPP
|
Loading…
Add table
Add a link
Reference in a new issue