Changeset a4943d8c for src/libcfa/containers/result
- Timestamp:
- May 25, 2017, 12:55:12 PM (9 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:
- 58daf53, 84d58c5, cc38669
- Parents:
- bc37a83 (diff), e883a4b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/libcfa/containers/result (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/containers/result
rbc37a83 ra4943d8c 18 18 #define RESULT_H 19 19 20 #include <stdbool.h> 20 21 21 22 // DO NOT USE DIRECTLY! 22 23 forall(otype T, otype E) 24 union inner_result{ 25 T value; 26 E error; 27 }; 28 29 forall(otype T, otype E) 23 30 struct result { 24 _Bool has_value; 25 union { 26 T value; 27 E error; 28 }; 31 bool has_value; 32 inner_result(T, E); 29 33 }; 30 34 … … 46 50 47 51 forall(otype T, otype E) 48 _Bool ?!=?(result(T, E) this, zero_t);52 bool ?!=?(result(T, E) this, zero_t); 49 53 50 54 forall(otype T, otype E) … … 55 59 56 60 forall(otype T, otype E) 57 _Bool has_value(result(T, E) * this);61 bool has_value(result(T, E) * this); 58 62 59 63 forall(otype T, otype E)
Note:
See TracChangeset
for help on using the changeset viewer.