Size prefix.
| 237 | public: |
| 238 | // Size prefix. |
| 239 | String(const uint8_t *data, uint8_t byte_width) : Sized(data, byte_width) {} |
| 240 | // Manual size. |
| 241 | String(const uint8_t *data, uint8_t byte_width, size_t sz) |
| 242 | : Sized(data, byte_width, sz) {} |
no outgoing calls
no test coverage detected