jimmiebergmann / mini-yaml

Single header YAML 1.0 C++11 serializer/deserializer.
MIT License
221 stars 41 forks source link

Iterate on the YAML and recovery the unknown KEY = VALUE information! #16

Open WillianBR opened 1 year ago

WillianBR commented 1 year ago

Hi Folks,

I looking at this code and it seems good.

But I can't found a way of read a unknown YAML file and enumerate a section to get the KEY and the VALUE data.

There's any way to do so?

I just need to iterate on the YAML and recovery the unknown KEY = VALUE information!

Somebody can help me?

Kind of:

for(auto it = myvalues.Begin(); itS != myvalues.End(); it++)
{
    // get each KEY & VALUE
   // use the K & V
}