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