I noticed via an Xcode autocompletion suggestion that @State
seems to not only autogenerate a $
-prefixed member for accessing the corresponding Binding
(as is commonly known), but also a _
-prefixed member, seemingly exposing the actual State
wrapper.
This makes me wonder, what's the use case for it, and where is it mentioned in the docs?