Move elements from one forward list to another forward list by reference.
Usage
splice_after(x, y, x_position, y_from, y_to)
Value
Invisibly returns NULL.
Arguments
x
A CppForwardList object to which to add elements.
y
A CppForwardList object, of the same data type as x, from which to extract elements.
x_position
Index after which to insert elements in x.
y_from
Index after which to extract elements from y.
y_to
Index of the last element to extract from y.
Details
Indices start at 1, which is also the minimum value permitted. Thus, the current implementation in this package does not allow to move the
first element of y.