MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / parse_one_digit

Function parse_one_digit

Source/external/fast_float.h:2897–2903  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2895}
2896
2897fastfloat_really_inline FASTFLOAT_CONSTEXPR14
2898void parse_one_digit(const char*& p, limb& value, size_t& counter, size_t& count) noexcept {
2899 value = value * 10 + limb(*p - '0');
2900 p++;
2901 counter++;
2902 count++;
2903}
2904
2905fastfloat_really_inline FASTFLOAT_CONSTEXPR20
2906void add_native(bigint& big, limb power, limb value) noexcept {

Callers 1

parse_mantissaFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected