| 101 | // A bool ctor would also convert incoming pointers (bletch). |
| 102 | |
| 103 | AlphaNum(int i32) // NOLINT(runtime/explicit) |
| 104 | : piece_(digits_, FastInt32ToBufferLeft(i32, digits_)) {} |
| 105 | AlphaNum(unsigned int u32) // NOLINT(runtime/explicit) |
| 106 | : piece_(digits_, FastUInt32ToBufferLeft(u32, digits_)) {} |
| 107 | AlphaNum(long x) // NOLINT(runtime/explicit) |
nothing calls this directly
no test coverage detected