rotateBack

fun <I1, I2, I3, O> (I1, I2, I3) -> O.rotateBack(): (I2, I3, I1) -> O
fun <I1, I2, I3, I4, O> (I1, I2, I3, I4) -> O.rotateBack(): (I2, I3, I4, I1) -> O
fun <I1, I2, I3, I4, I5, O> (I1, I2, I3, I4, I5) -> O.rotateBack(): (I2, I3, I4, I5, I1) -> O
fun <I1, I2, I3, I4, I5, I6, O> (I1, I2, I3, I4, I5, I6) -> O.rotateBack(): (I2, I3, I4, I5, I6, I1) -> O

Returns a function where the first argument has been moved to after the last argument.