@brief Tests whether the current basic_node value is of sequence type. @return true if the type is sequence, false otherwise. @sa https://fktn-k.github.io/fkYAML/api/basic_node/is_sequence/
| 13514 | /// @return true if the type is sequence, false otherwise. |
| 13515 | /// @sa https://fktn-k.github.io/fkYAML/api/basic_node/is_sequence/ |
| 13516 | bool is_sequence() const noexcept { |
| 13517 | return resolve_reference().is_sequence_impl(); |
| 13518 | } |
| 13519 | |
| 13520 | /// @brief Tests whether the current basic_node value is of mapping type. |
| 13521 | /// @return true if the type is mapping, false otherwise. |