diff options
author | kalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-05 21:40:27 +0000 |
---|---|---|
committer | kalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-05 21:40:27 +0000 |
commit | 1dea75780652d29648c9cb5747f30bc2100b8fee (patch) | |
tree | 808073b62666094cab1c7c77f9baaceb250a7f69 /base/stl_util.h | |
parent | 5b7115b37a8e5507232f830afd0bfbd6e443a137 (diff) | |
download | chromium_src-1dea75780652d29648c9cb5747f30bc2100b8fee.zip chromium_src-1dea75780652d29648c9cb5747f30bc2100b8fee.tar.gz chromium_src-1dea75780652d29648c9cb5747f30bc2100b8fee.tar.bz2 |
Add STLSetDifference to stl_util.h, because std::set_difference is extremely
awkward to work with.
Review URL: https://chromiumcodereview.appspot.com/11415239
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171321 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/stl_util.h')
-rw-r--r-- | base/stl_util.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/base/stl_util.h b/base/stl_util.h index b3ddfa3..47c0ce1 100644 --- a/base/stl_util.h +++ b/base/stl_util.h @@ -7,9 +7,12 @@ #ifndef BASE_STL_UTIL_H_ #define BASE_STL_UTIL_H_ +#include <algorithm> #include <string> #include <vector> +#include "base/logging.h" + // Clears internal memory of an STL object. // STL clear()/reserve(0) does not always free internal memory allocated // This function uses swap/destructor to ensure the internal memory is freed. @@ -191,4 +194,28 @@ bool ContainsKey(const Collection& collection, const Key& key) { return collection.find(key) != collection.end(); } +namespace base { + +// Returns true if the container is sorted. +template <typename Container> +bool STLIsSorted(const Container& cont) { + return std::adjacent_find(cont.begin(), cont.end(), + std::greater<typename Container::value_type>()) + == cont.end(); +} + +// Returns a new ResultType containing the difference of two sorted containers. +template <typename ResultType, typename Arg1, typename Arg2> +ResultType STLSetDifference(const Arg1& a1, const Arg2& a2) { + DCHECK(STLIsSorted(a1)); + DCHECK(STLIsSorted(a2)); + ResultType difference; + std::set_difference(a1.begin(), a1.end(), + a2.begin(), a2.end(), + std::inserter(difference, difference.end())); + return difference; +} + +} // namespace base + #endif // BASE_STL_UTIL_H_ |