summaryrefslogtreecommitdiff
path: root/docs/type_system/result.md
blob: e33f04bbee804913f1a36116af8113e41a269770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Result

---

A 128bit value error pair, cannot be stored.

```text
Result[TYPE]
```

# Default

```text
x : // something that returns a result
// x is the value from the result
```

If the result is an error, an error is thrown

# Matching

```text
# ... {
    .ok { arg; ... }[arg]
    .error { arg; ... }[arg]
}
```

## .ok

## .error

# Return

## \`ok

## \`error