mirror of
https://github.com/nlohmann/json.git
synced 2026-07-09 03:55:09 +00:00
557 B
557 B
nlohmann::json_sax::binary
virtual bool binary(binary_t& val) = 0;
A binary value was read.
Parameters
val(in)- binary value
Return value
Whether parsing should proceed.
Notes
It is safe to move the passed binary value.
Examples
??? example
The example below shows how the SAX interface is used.
```cpp
--8<-- "examples/sax_parse__binary.cpp"
```
Output:
```json
--8<-- "examples/sax_parse__binary.output"
```
Version history
- Added in version 3.8.0.