blob: 4e8fa8e06fc975f0a6ccb369cd9680122399d5b2 [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
16"outer": {
17 "middle": {
18 "inner": 3
19 }
20}
21```