I’m reading different interpretations of the way this function should work.
cplusplus.com says that this function should “move the element directly AFTER i”.
Yet cppreference.com says that it splices the element AT i.
MSvisual studio agrees with cplusplus.com. However what is actually the correct behaviour? I tend to think moving “after i” is more logical (& doesn’t take N time to find the preceding node).
(PS: no forward-list tag?)
23.3.4.6