Add skstd version of std::exchange
authorcsmartdalton <csmartdalton@google.com>
Thu, 29 Sep 2016 20:11:23 +0000 (13:11 -0700)
committerCommit bot <commit-bot@chromium.org>
Thu, 29 Sep 2016 20:11:23 +0000 (13:11 -0700)
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2381793004

Review-Url: https://codereview.chromium.org/2381793004

src/core/SkExchange.h [new file with mode: 0644]

diff --git a/src/core/SkExchange.h b/src/core/SkExchange.h
new file mode 100644 (file)
index 0000000..50e2fe9
--- /dev/null
@@ -0,0 +1,25 @@
+/*
+ * Copyright 2016 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef SkExchange_DEFINED
+#define SkExchange_DEFINED
+
+#include <utility>
+
+namespace skstd {
+
+// std::exchange is in C++14
+template<typename T, typename U = T>
+inline static T exchange(T& obj, U&& new_val) {
+    T old_val = std::move(obj);
+    obj = std::forward<U>(new_val);
+    return old_val;
+}
+
+}
+
+#endif  // SkExchange_DEFINED