blob: dd07c2222e40188843722499f90cb995c55d4cd6 [file] [log] [blame] [view]
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01001[TOC](Readme.md) [Prev](interpolation.md) [Next](listcomp.md)
2
Marcel van Lohuizenaf0932f2019-01-11 13:03:56 +01003_Expressions_
4
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01005# Interpolation of Field Names
6
7String interpolations may also be used in field names.
8
9One cannot refer to generated fields with references.
10
11<!-- CUE editor -->
Marcel van Lohuizenf0c94042019-02-22 22:46:37 +010012_- genfield.cue:_
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +010013```
14sandwich: {
15 type: "Cheese"
16 "has\(type)": true
17 hasButter: true
18 butterAndCheese: hasButter && hasCheese
19}
20```
21
22<!-- result -->
Marcel van Lohuizenf0c94042019-02-22 22:46:37 +010023`$ cue eval -i genfield.cue`
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +010024```
25sandwich: {
26 type: "Cheese"
27 hasCheese: true
28 hasButter: true
29 butterAndCheese: _|_ // unknown reference 'hasCheese'
30}
31```