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

Function is_integer

libraries/lib-string-utils/3party/fast_float.h:479–479  ·  view source on GitHub ↗

Next function can be micro-optimized, but compilers are entirely able to optimize it well.

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls

Tested by

no test coverage detected