Changes in src/libcfa/containers/maybe [20877d2:aca65621]
- File:
-
- 1 edited
-
src/libcfa/containers/maybe (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/containers/maybe
r20877d2 raca65621 29 29 30 30 forall(otype T) 31 void ?{}(maybe(T) *this);31 void ?{}(maybe(T) & this); 32 32 33 33 forall(otype T) 34 void ?{}(maybe(T) *this, T value);34 void ?{}(maybe(T) & this, T value); 35 35 36 36 forall(otype T) 37 void ?{}(maybe(T) *this, maybe(T) other);37 void ?{}(maybe(T) & this, maybe(T) other); 38 38 39 39 forall(otype T) 40 void ^?{}(maybe(T) *this);40 void ^?{}(maybe(T) & this); 41 41 42 42 forall(otype T) 43 maybe(T) ?=?(maybe(T) *this, maybe(T) other);43 maybe(T) ?=?(maybe(T) & this, maybe(T) other); 44 44 45 45 forall(otype T)
Note:
See TracChangeset
for help on using the changeset viewer.