Next function can be micro-optimized, but compilers are entirely able to optimize it well.
| 530 | // Next function can be micro-optimized, but compilers are entirely |
| 531 | // able to optimize it well. |
| 532 | fastfloat_really_inline bool is_integer(char c) noexcept { return c >= '0' && c <= '9'; } |
| 533 | |
| 534 | fastfloat_really_inline uint64_t byteswap(uint64_t val) { |
| 535 | return (val & 0xFF00000000000000) >> 56 |
no outgoing calls
no test coverage detected