|
LLVM
4.0.0
|
This class should be specialized by type that requires custom conversion to/from a YAML literal block scalar. More...
#include <YAMLTraits.h>
This class should be specialized by type that requires custom conversion to/from a YAML literal block scalar.
For example:
template <> struct BlockScalarTraits<MyType> { static void output(const MyType &Value, void*, llvm::raw_ostream &Out) { // stream out custom formatting Out << Val; } static StringRef input(StringRef Scalar, void*, MyType &Value) { // parse scalar and set value // return empty string on success, or error string return StringRef(); } };
Definition at line 167 of file YAMLTraits.h.
1.8.6