| 13098 | /// @sa https://fktn-k.github.io/fkYAML/api/basic_node/deserialize/ |
| 13099 | template <typename ItrType> |
| 13100 | static basic_node deserialize(ItrType begin, ItrType end) { |
| 13101 | return deserializer_type().deserialize( |
| 13102 | detail::input_adapter(std::forward<ItrType>(begin), std::forward<ItrType>(end))); |
| 13103 | } |
| 13104 | |
| 13105 | /// @brief Deserialize all YAML documents in the input into basic_node objects. |
| 13106 | /// @tparam InputType Type of a compatible input. |
no test coverage detected