blob: b4876c1fd2c538ccc9788e2a7c8c7cf4b5133135 [file] [log] [blame] [view]
Marcel van Lohuizene8992502019-01-11 13:10:54 +01001[TOC](Readme.md) [Prev](unification.md) [Next](defaults.md)
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01002
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# Disjunctions
6
7Disjunctions, or sum types, define a new type that is one of several things.
8
9In the example, `conn` defines a `protocol` field that must be one of two
Anthony Yeh1dda3482019-02-13 14:10:43 -080010values: `"tcp"` or `"udp"`.
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +010011It is an error for a concrete `conn`
12to define anything else than these two values.
13
14<!-- CUE editor -->
15```
16conn: {
17 address: string
18 port: int
19 protocol: "tcp" | "udp"
20}
21
Anthony Yeh1dda3482019-02-13 14:10:43 -080022lossy: conn & {
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +010023 address: "1.2.3.4"
24 port: 8888
25 protocol: "udp"
26}
Anthony Yeh1dda3482019-02-13 14:10:43 -080027```