ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
deferred_resn
demangler
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
new-env
no_list
persistent-indexer
pthread-emulation
qualifiedEnum
resolv-new
with_gc
|
Last change
on this file since cd99ef1 was 20877d2, checked in by Andrew Beach <ajbeach@…>, 8 years ago |
|
I've been sitting on these tests for a while. New tests for maybe/result. Passing on my machine.
|
-
Property mode
set to
100644
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | //
|
|---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
|
|---|
| 3 | //
|
|---|
| 4 | // The contents of this file are covered under the licence agreement in the
|
|---|
| 5 | // file "LICENCE" distributed with Cforall.
|
|---|
| 6 | //
|
|---|
| 7 | // maybe -- May contain a value.
|
|---|
| 8 | //
|
|---|
| 9 | // Author : Andrew Beach
|
|---|
| 10 | // Created On : Wed May 24 14:43:00 2017
|
|---|
| 11 | // Last Modified By : Andrew Beach
|
|---|
| 12 | // Last Modified On : Fri Jun 16 15:42:00 2017
|
|---|
| 13 | // Update Count : 2
|
|---|
| 14 | //
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 | #ifndef MAYBE_H
|
|---|
| 18 | #define MAYBE_H
|
|---|
| 19 |
|
|---|
| 20 | #include <stdbool.h>
|
|---|
| 21 |
|
|---|
| 22 | // DO NOT USE DIRECTLY!
|
|---|
| 23 | forall(otype T)
|
|---|
| 24 | struct maybe {
|
|---|
| 25 | bool has_value;
|
|---|
| 26 | T value;
|
|---|
| 27 | };
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 | forall(otype T)
|
|---|
| 31 | void ?{}(maybe(T) * this);
|
|---|
| 32 |
|
|---|
| 33 | forall(otype T)
|
|---|
| 34 | void ?{}(maybe(T) * this, T value);
|
|---|
| 35 |
|
|---|
| 36 | forall(otype T)
|
|---|
| 37 | void ?{}(maybe(T) * this, maybe(T) other);
|
|---|
| 38 |
|
|---|
| 39 | forall(otype T)
|
|---|
| 40 | void ^?{}(maybe(T) * this);
|
|---|
| 41 |
|
|---|
| 42 | forall(otype T)
|
|---|
| 43 | maybe(T) ?=?(maybe(T) * this, maybe(T) other);
|
|---|
| 44 |
|
|---|
| 45 | forall(otype T)
|
|---|
| 46 | bool ?!=?(maybe(T) this, zero_t);
|
|---|
| 47 |
|
|---|
| 48 | /* Waiting for bug#11 to be fixed.
|
|---|
| 49 | forall(otype T)
|
|---|
| 50 | maybe(T) maybe_value(T value);
|
|---|
| 51 |
|
|---|
| 52 | forall(otype T)
|
|---|
| 53 | maybe(T) maybe_none();
|
|---|
| 54 | */
|
|---|
| 55 |
|
|---|
| 56 | forall(otype T)
|
|---|
| 57 | bool has_value(maybe(T) * this);
|
|---|
| 58 |
|
|---|
| 59 | forall(otype T)
|
|---|
| 60 | T get(maybe(T) * this);
|
|---|
| 61 |
|
|---|
| 62 | forall(otype T)
|
|---|
| 63 | void set(maybe(T) * this, T value);
|
|---|
| 64 |
|
|---|
| 65 | forall(otype T)
|
|---|
| 66 | void set_none(maybe(T) * this);
|
|---|
| 67 |
|
|---|
| 68 | #endif // MAYBE_H
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.