* Writes into this stream. * * @param buf Data to write. * @param len Number of bytes to write. */
| 70 | * @param len Number of bytes to write. |
| 71 | */ |
| 72 | inline void Write(const void* buf, size_t len) { |
| 73 | if (len) { |
| 74 | DoWrite(buf, len); |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Writes a string into this stream. |