File: bytestring.md

package info (click to toggle)
reflect-cpp 0.21.0%2Bds-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,140 kB
  • sloc: cpp: 50,336; python: 139; makefile: 29; sh: 3
file content (14 lines) | stat: -rw-r--r-- 262 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# `rfl::Bytestring` 

`rfl::Bytestring` is a simple alias:

```cpp
namespace rfl {

using Bytestring = std::vector<std::byte>;

}
```

Bytestrings are supported by binary formats such as BSON, CBOR, flexbuffers and msgpack. 
Textual formats do not support them.