Changes in src/libcfa/containers/maybe [aca65621:20877d2]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/containers/maybe
raca65621 r20877d2 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.