Morwenn Use single-parameter std::next/std::prev when possible
99b612d Apr 24, 2022
Use single-parameter std::next/std::prev when possible
Some standard library implementations have special cases and call
operators ++/-- instead of +=/-= when possible, which can lead to
slightly better codegen for non-trivial random-access iterator types
such as those of std::deque.
99b612d