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