blob: 952c2407348140335dfcfef5daa6b35ecd19c5ed [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 -->
10```
11outer middle inner: 3
12```
13
14<!-- JSON result -->
15```json
Marcel van Lohuizene8992502019-01-11 13:10:54 +010016{
17 "outer": {
18 "middle": {
19 "inner": 3
20 }
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +010021 }
22}
23```