diff options
Diffstat (limited to 'src/stdlib/result.h')
| -rw-r--r-- | src/stdlib/result.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/stdlib/result.h b/src/stdlib/result.h new file mode 100644 index 00000000..328480e7 --- /dev/null +++ b/src/stdlib/result.h @@ -0,0 +1,9 @@ +#pragma once + +// Result type for Success/Failure + +#include "types.h" + +extern const TypeInfo_t Result$Success$$info; +extern const TypeInfo_t Result$Failure$$info; +extern const TypeInfo_t Result$$info; |
