MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / is_integer

Function is_integer

source/extern/fast_float.h:1028–1030  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1026// able to optimize it well.
1027template <typename UC>
1028fastfloat_really_inline constexpr bool is_integer(UC c) noexcept {
1029 return !(c > UC('9') || c < UC('0'));
1030}
1031
1032fastfloat_really_inline constexpr uint64_t byteswap(uint64_t val) {
1033 return (val & 0xFF00000000000000) >> 56 | (val & 0x00FF000000000000) >> 40 |

Callers 1

fast_float.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected