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