Explicit Memberwise Initializers

One cool thing about explicit memberwise initializer declarations is that they can be marked with custom attributes. Use cases:

@usableFromInline init(internal...) {}
@objc init(internal...) {}
...
1 Like