Function list_reverse_splice
Source pub unsafe fn list_reverse_splice(l1: *mut List, l2: *mut List)
Expand description
Reverse splice: move all elements from l2 to the front of l1 in reverse order.
§UPSTREAM-PARITY
void xmlListReverseSplice(xmlListPtr l1, xmlListPtr l2);
§SAFETY
l1, l2 must be valid pointers to Lists, or NULL.