* Append binary uint8. */
| 16 | * Append binary uint8. |
| 17 | */ |
| 18 | void BaseStringBuilder::PutUint8(uint8_t value) |
| 19 | { |
| 20 | std::array<char, 1> buf{ |
| 21 | static_cast<char>(value) |
| 22 | }; |
| 23 | this->PutBuffer(buf); |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Append binary int8. |
no test coverage detected