add support for toml::get<std::unordered_set>#288
Conversation
|
I though about adding a Also it might be good to add a condition for |
|
Thank you! |
add support for `toml::get<std::unordered_set>` 650e4c1
|
Yes! |
|
I was thinking about it and it may be better to implement an The conditions for
The distinguishing part here is that sets have the Not urgent, just something to think about. |
Easier than calling
toml::get<std::vector<T>>then having to convert it tostd::unordered_setAs part of the PR I added a couple of basic tests. They are mostly for demonstrating that this works.