blob: cb1eb0db6846d337043b89dad04e71fe8422411d [file] [log] [blame] [view]
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01001[TOC](Readme.md) [Prev](curly.md) [Next](foldany.md)
2
Marcel van Lohuizenaf0932f2019-01-11 13:03:56 +01003_JSON Sugar and other Goodness_
4
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01005# Folding of Single-Field Structs
6
7CUE allows a shorthand for structs with single members.
8
9<!-- CUE editor -->
Marcel van Lohuizenf0c94042019-02-22 22:46:37 +010010_fold.cue:_
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +010011```
12outer middle inner: 3
13```
14
15<!-- JSON result -->
Marcel van Lohuizenf0c94042019-02-22 22:46:37 +010016`$ cue export fold.cue`
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +010017```json
Marcel van Lohuizene8992502019-01-11 13:10:54 +010018{
19 "outer": {
20 "middle": {
21 "inner": 3
22 }
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +010023 }
24}
25```