Using C++ std::merge

There have been a few times that I needed 2 vectors to be … merged… and they had to be ordered. It’s simple when you have a plain old type, and are using the back_inserter to append the contents of each vector to the end of the merged vector, but what if you want to … Read more