|
rapidyaml 0.15.2
parse and emit YAML, and do it fast
|
Functions | |
| void | sample_emit_to_container () |
| emit to memory, eg a string or vector-like container | |
| void | sample_emit_to_stream () |
| emit to a stream, eg std::ostream | |
| void | sample_emit_to_file () |
| emit to a FILE* | |
| void | sample_emit_nested_node () |
| pick a nested node as the root when emitting | |
| void sample_emit_to_container | ( | ) |
emit to memory, eg a string or vector-like container
demonstrates how to emit to a linear container of char
Definition at line 4681 of file quickstart.cpp.
Referenced by main().
| void sample_emit_to_stream | ( | ) |
emit to a stream, eg std::ostream
demonstrates how to emit to a stream-like structure
Definition at line 4808 of file quickstart.cpp.
Referenced by main().
| void sample_emit_to_file | ( | ) |
emit to a FILE*
demonstrates how to emit to a FILE*
Definition at line 4905 of file quickstart.cpp.
Referenced by main().
| void sample_emit_nested_node | ( | ) |
pick a nested node as the root when emitting
just like parsing into a nested node, you can also emit from a nested node.
Definition at line 4936 of file quickstart.cpp.
Referenced by main().