| 80 | size_t getSize() const override { return size; } |
| 81 | bool isSigned() const { return is_signed; } |
| 82 | String str() const override |
| 83 | { |
| 84 | WriteBufferFromOwnString buf; |
| 85 | writeChar(static_cast<char>(endianness), buf); |
| 86 | writeChar(is_signed ? 'i' : 'u', buf); |
| 87 | writeIntText(size, buf); |
| 88 | return buf.str(); |
| 89 | } |
| 90 | |
| 91 | private: |
| 92 | size_t size; |
nothing calls this directly
no test coverage detected