mayah

Results 13 comments of mayah

I didn't expect it's publicly used, but probably OK to expose it. (patch welcome 😃)

@DoumanAsh Thanks for reporting... Yeah, I think it's not good. It should be an error. I'll fix it.

`toml::Value` does not have any flag that the table is inline or not. After parsing toml file, we don't have any way to distinguish inline table or usual table. We...

Thank you for the report, and sorry for the late response. By design, this library doesn't make much account of too complex input. To solve this problem, we won't be...

Hi, since this library is not focusing on performance but handiness, I believe either is OK. But yeah, std::unordered_map seems natural for this case.

@veeg yeah, it is also reasonable. However, to keep insertion order, we need to introduce something like `LinkedHashMap` in Java, however it's not available in STL. Another option is to...

Anyway, insertion order cannot be kept without introducing a bit fancy data structure.

Thanks. I have a plan to support it, but I'm currently a bit busy so it may take time

Thanks for reporting. ``` d = 7-0-2 ``` It's parsed as Time type. I think this is not a valid Time value, so this should be rejected in the parser,...