* xmlXPathNodeTrailing: * @nodes: a node-set * @node: a node * * Implements the EXSLT - Sets trailing() function: * node-set set:trailing (node-set, node-set) * @nodes is sorted by document order, then #xmlXPathNodeTrailingSorted * is called. * * Returns the nodes in @nodes that follow @node in document order, * @nodes if @node is NULL or an empty node-set if @nodes *
| 3836 | * doesn't contain @node |
| 3837 | */ |
| 3838 | xmlNodeSetPtr |
| 3839 | xmlXPathNodeTrailing (xmlNodeSetPtr nodes, xmlNodePtr node) { |
| 3840 | xmlXPathNodeSetSort(nodes); |
| 3841 | return(xmlXPathNodeTrailingSorted(nodes, node)); |
| 3842 | } |
| 3843 | |
| 3844 | /** |
| 3845 | * xmlXPathTrailingSorted: |
nothing calls this directly
no test coverage detected