result: add some more functionality
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>
Thu, 27 Jul 2017 13:50:10 +0000 (15:50 +0200)
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>
Tue, 8 Aug 2017 15:24:00 +0000 (17:24 +0200)
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
src/result.hpp

index e22fde9..4768d9f 100644 (file)
@@ -6,6 +6,7 @@
 #define TMCAGLWM_RESULT_HPP
 
 #include <experimental/optional>
+#include <functional>
 
 namespace wm {
 
@@ -34,6 +35,14 @@ struct result {
    }
 
    char const *unwrap_err() { return this->e; }
+
+   optional<T> ok() const { return this->t; }
+   optional<char const *> err() const { return optional<char const *>(this->e); }
+
+   template <typename U>
+   result<U> map(std::function<U(T)> f);
+
+   result<T> map_err(std::function<char const *(char const *)> f);
 };
 
 template <typename T>
@@ -46,6 +55,23 @@ struct result<T> Ok(T t) {
    return result<T>{nullptr, t};
 }
 
+template <typename T>
+template <typename U>
+result<U> result<T>::map(std::function<U(T)> f) {
+   if (this->is_ok()) {
+      return Ok<U>(f(this->unwrap()));
+   }
+   return Err<U>(this->e);
+}
+
+template <typename T>
+result<T> result<T>::map_err(std::function<char const *(char const *)> f) {
+   if (this->is_err()) {
+      return Err<T>(f(this->e));
+   }
+   return *this;
+}
+
 }  // namespace wm
 
 #endif  // TMCAGLWM_RESULT_HPP