Meeseeks.Document.get_nodes

You're seeing just the function get_nodes, go back to Meeseeks.Document module for more information.

Specs

get_nodes(t()) :: [node_t()] | no_return()

Returns all of the document's nodes.

Returns nodes in depth-first order.

Link to this function

get_nodes(document, node_ids)

View Source

Specs

get_nodes(t(), [node_id()]) :: [node_t()] | no_return()

Returns a list of nodes referred to by node_ids in the context of the document.

Returns nodes in the same order as node_ids.

Raises if any id in node_ids does not exist in the document.