Changeset aca65621 for src/libcfa/containers/maybe
- Timestamp:
- Jul 12, 2017, 4:40:02 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 0698aa1
- Parents:
- 469f709
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/containers/maybe
r469f709 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.