New in version 2.0.
Permute sequence by permutation:
abjad> from abjad.tools import sequencetools
abjad> sequencetools.permute_sequence([10, 11, 12, 13, 14, 15], [5, 4, 0, 1, 2, 3])
[15, 14, 10, 11, 12, 13]
Return newly constructed sequence object.