fktn-k / fkYAML

A C++ header-only YAML library
MIT License
69 stars 7 forks source link

#190 Support specialization of deserialization for a vector of user-defined type objects #203

Closed fktn-k closed 11 months ago

fktn-k commented 11 months ago

Currently, deserializing YAML sequence nodes only supports the fkyaml::basic_node<...>::sequence_type type.
When attempting specialization for a vector of user-defined type objects, a user must call the specialization within a for-loop, which can be avoided by implementing partial specialization in fkYAML.
So, this PR have resolved the issue described above.

coveralls commented 11 months ago

Coverage Status

coverage: 100.0%. remained the same when pulling 4b179fe405cdf6d05ebc9b9378a7279876f1233f on feature/190_support_specialize_user_defined_arrays into 6ed3e074a55735d379a61e48bfb78f29a57dea6f on develop.