Command click in Xcode 11 (on Catalina) on some types like Button or SwiftUI module in general reveals seemingly broken type aliases such as:
public struct Button<Label> where Label : View {
public typealias Body
}
extension View {
/// The type resulting from applying a view modifier `T`.
public typealias Modified<T>
}
Is this a bug or a hidden feature that the framework required?
Cool thank you for sharing where I can check the interface files, that's helpful.
But for some reason this only applies to Apple frameworks and stdlib, I don't recall that this ever worked for custom types that begin with a single underscore.