| 43 | // A bool ctor would also convert incoming pointers (bletch). |
| 44 | |
| 45 | AlphaNum(int32 i32) // NOLINT(runtime/explicit) |
| 46 | : piece(digits, FastInt32ToBufferLeft(i32, digits) - &digits[0]) {} |
| 47 | AlphaNum(uint32 u32) // NOLINT(runtime/explicit) |
| 48 | : piece(digits, FastUInt32ToBufferLeft(u32, digits) - &digits[0]) {} |
| 49 | AlphaNum(int64 i64) // NOLINT(runtime/explicit) |
nothing calls this directly
no test coverage detected