Marcel van Lohuizen | af0932f | 2019-01-11 13:03:56 +0100 | [diff] [blame] | 1 | [TOC](Readme.md) [Prev](disjunctions.md) [Next](disjstruct.md) |
| 2 | |
Marcel van Lohuizen | 3e592b4 | 2019-01-11 20:31:29 +0100 | [diff] [blame^] | 3 | _Types ~~and~~ are Values_ |
Marcel van Lohuizen | af0932f | 2019-01-11 13:03:56 +0100 | [diff] [blame] | 4 | |
Marcel van Lohuizen | 75cb003 | 2019-01-11 12:10:48 +0100 | [diff] [blame] | 5 | # Default Values |
| 6 | |
| 7 | If at the time of evaluation a sum type still has more than one possible |
| 8 | value, the first error-free value is taken. |
| 9 | A value is error free if it is not an error, it is a list with only error-free |
| 10 | elements, or it is a struct where all field values are error-free. |
| 11 | The default value must also not be ambiguous. |
| 12 | |
| 13 | In the example, `replicas` defaults to `1`. |
| 14 | In the case of `protocol`, however, there are multiple definitions with |
| 15 | different, mutually incompatible defaults. |
| 16 | It is still possible to resolve this error by explicitly setting the value |
| 17 | for protocol. |
| 18 | Try it! |
| 19 | <!-- CUE editor --> |
| 20 | ``` |
| 21 | // any positive number, 1 is the default |
Marcel van Lohuizen | af0932f | 2019-01-11 13:03:56 +0100 | [diff] [blame] | 22 | replicas: 1 | uint |
Marcel van Lohuizen | 75cb003 | 2019-01-11 12:10:48 +0100 | [diff] [blame] | 23 | |
| 24 | // the default value is ambiguous |
| 25 | protocol: "tcp" | "udp" |
| 26 | protocol: "udp" | "tcp" |
| 27 | ``` |
| 28 | |
| 29 | <!-- result --> |
| 30 | ``` |
| 31 | replicas: 1 |
Marcel van Lohuizen | 75cb003 | 2019-01-11 12:10:48 +0100 | [diff] [blame] | 32 | protocol: _|_ |
| 33 | ``` |