public struct DefaultNavigationViewStyle : SwiftUI.NavigationViewStyle {
public init()
public func _body(configuration: SwiftUI._NavigationViewStyleConfiguration) -> some SwiftUI.View
public typealias _Body = @_opaqueReturnTypeOf("$s7SwiftUI26DefaultNavigationViewStyleV5_body13configurationQrAA01_deF13ConfigurationV_tF", 0) 🦸
}
Now I don't see _Body in the documentation, but how do I decypher this?
Especially the
(Edit: Somehow Discourse makes them look different, but they're the same character in the Editor)
The emoji is meaningless; an arbitrary identifier can be used there, and the parser will ignore it. It's just there for the attribute to have something to grammatically hang on to. The information needed is entirely in the attribute itself. The string argument indicates which declaration's opaque type is being referenced using the declaration's mangled name, and the integer argument indicates which independent element of the opaque type is being referenced; it's currently always zero, but in the future we may generalize the feature so you can have multiple some Protocol types in an opaque return, and this index will indicate which of them is being referenced.