@brief Tests whether the current basic_node value is of mapping type. @return true if the type is mapping, false otherwise. @sa https://fktn-k.github.io/fkYAML/api/basic_node/is_mapping/
| 13521 | /// @return true if the type is mapping, false otherwise. |
| 13522 | /// @sa https://fktn-k.github.io/fkYAML/api/basic_node/is_mapping/ |
| 13523 | bool is_mapping() const noexcept { |
| 13524 | return resolve_reference().is_mapping_impl(); |
| 13525 | } |
| 13526 | |
| 13527 | /// @brief Tests whether the current basic_node value is of null type. |
| 13528 | /// @return true if the type is null, false otherwise. |