Changeset 64fc0ba for src/libcfa/containers/maybe
- Timestamp:
- May 25, 2017, 11:38:36 AM (8 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:
- e883a4b
- Parents:
- 58ed882
- File:
-
- 1 edited
-
src/libcfa/containers/maybe (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/containers/maybe
r58ed882 r64fc0ba 18 18 #define MAYBE_H 19 19 20 #include <stdbool.h> 20 21 21 22 // DO NOT USE DIRECTLY! 22 23 forall(otype T) 23 24 struct maybe { 24 _Bool has_value;25 bool has_value; 25 26 T value; 26 27 }; … … 40 41 41 42 forall(otype T) 42 _Bool ?!=?(result(T, E) this, zero_t);43 bool ?!=?(maybe(T) this, zero_t); 43 44 44 45 forall(otype T) … … 49 50 50 51 forall(otype T) 51 _Bool has_value(maybe(T) * this);52 bool has_value(maybe(T) * this); 52 53 53 54 forall(otype T)
Note:
See TracChangeset
for help on using the changeset viewer.