Jesse Beder

Results 74 comments of Jesse Beder

Sure, but I'm not sure how we'd get the output in the first example because it seems to know the entirety of the sequence, whereas the yaml-cpp API is streaming....

You can check the type of the node. Is that sufficient?

I think you're right. Probably the right behavior is to *add* the `0o123` format but not remove the `0123` format, since the YAML schema is allowed to be extended, and...

It's customary to do things like post the exact error message.

If you're emitting it piecemeal, then you can just prepend `YAML::SingleQuoted` right before the node you want single-quoted. But if you've got a large node where you only want a...

There isn't. Why would you want one?

Sorry I didn't see this discussion. The spec [section 3.3.2](http://www.yaml.org/spec/1.2/spec.html#id2768011) describes "non-specific tags" for nodes that aren't explicitly tagged; for non-plain (e.g. quoted) scalars, this is `"!"`. The spec _also_...