|
| bool | write_u16 (Buffer &buf, std::uint16_t v) |
| | Append a big-endian uint16 to buf; false if there is no room.
|
| |
| bool | write_u32 (Buffer &buf, std::uint32_t v) |
| | Append a big-endian uint32 to buf; false if there is no room.
|
| |
| bool | write_u64 (Buffer &buf, std::uint64_t v) |
| | Append a big-endian uint64 to buf; false if there is no room.
|
| |
| bool | read_u16 (Buffer &buf, std::uint16_t &out) |
| | Read a big-endian uint16 from buf into out; false if fewer than 2 bytes.
|
| |
| bool | read_u32 (Buffer &buf, std::uint32_t &out) |
| | Read a big-endian uint32 from buf into out; false if fewer than 4 bytes.
|
| |
| bool | read_u64 (Buffer &buf, std::uint64_t &out) |
| | Read a big-endian uint64 from buf into out; false if fewer than 8 bytes.
|
| |