pub unsafe fn yaml_document_append_sequence_item(
document: *mut YamlDocumentT,
sequence: i32,
item: i32,
) -> SuccessExpand description
Add an item to a SEQUENCE node.
This function adds a node with the given item id to the sequence node with the given
sequence id in the document.
ยงSafety
documentmust be a valid, non-null pointer to aYamlDocumentTstruct.sequencemust be a valid index within the range of nodes in theYamlDocumentTstruct, and the node at that index must be aYamlSequenceNode.itemmust be a valid index within the range of nodes in theYamlDocumentTstruct.- The
YamlDocumentTstruct and its associated nodes must be properly initialized and their memory allocated correctly. - The
YamlDocumentTstruct and its associated nodes must be properly aligned and have the expected memory layout.