I'm documenting some code in C++ right now, and one of the methods I intend to write will sort an array. It won't create a new array, though, it will sort the elements of the given array in place. I want to include a remark along the lines of, "if the original ordering was important to you, then don't use this method!" But I would rather say something like "sorts the given array... statically?!... dangerously!... with mutations!!!" that programmers like you would be able understand.
What word describes this sort of method?
Bonus question: can anyone recommend a tool for C++ that creates HTML documentation from specially formatted comments, like javadoc? My operating system of choice is Ubuntu.
Edit: I'm a student and my assignment is to sort.