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

Function is_integer

Source/external/fast_float.h:690–692  ·  view source on GitHub ↗

Next function can be micro-optimized, but compilers are entirely able to optimize it well.

Source from the content-addressed store, hash-verified

688// Next function can be micro-optimized, but compilers are entirely
689// able to optimize it well.
690fastfloat_really_inline constexpr bool is_integer(char c) noexcept {
691 return c >= '0' && c <= '9';
692}
693
694fastfloat_really_inline constexpr uint64_t byteswap(uint64_t val) {
695 return (val & 0xFF00000000000000) >> 56

Callers 1

fast_float.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected