Index: src/libcfa/containers/maybe
===================================================================
--- src/libcfa/containers/maybe	(revision 64fc0bafc25144f94bd5bbd4794fdbef138cdd9f)
+++ src/libcfa/containers/maybe	(revision 67cf18c3e5b8ae6e923fa93e69357ba5e746bf57)
@@ -8,7 +8,7 @@
 //
 // Author           : Andrew Beach
-// Created On       : Wed May 25 14:43:00 2017
+// Created On       : Wed May 24 14:43:00 2017
 // Last Modified By : Andrew Beach
-// Last Modified On : Wed Apr 25 16:58:00 2017
+// Last Modified On : Thr May 25 16:36:00 2017
 // Update Count     : 1
 //
@@ -41,4 +41,7 @@
 
 forall(otype T)
+maybe(T) ?=?(maybe(T) * this, maybe(T) other);
+
+forall(otype T)
 bool ?!=?(maybe(T) this, zero_t);
 
@@ -55,3 +58,9 @@
 T get(maybe(T) * this);
 
+forall(otype T)
+void set(maybe(T) * this, T value);
+
+forall(otype T)
+void set_none(maybe(T) * this);
+
 #endif // MAYBE_H
