| 1705 | // able to optimize it well. |
| 1706 | template <typename UC> |
| 1707 | fastfloat_really_inline constexpr bool is_integer(UC c) noexcept { |
| 1708 | return (unsigned)(c - UC('0')) <= 9u; |
| 1709 | } |
| 1710 | |
| 1711 | fastfloat_really_inline constexpr uint64_t byteswap(uint64_t val) { |
| 1712 | return (val & 0xFF00000000000000) >> 56 | (val & 0x00FF000000000000) >> 40 | |
no outgoing calls
no test coverage detected