Jierong Li
Jierong Li
```swift protocol SomeProtocol { init(t: T) } ``` The code generated by the protocol above will have an initializer like below which cause a compiler error. ```swift required init(t: T)...
```swift protocol SomeProtocol { associatedtype T func someMethod(closure: @escaping () -> Void) } ``` The `DefaultImplCaller` generated by the protocol above is like below. ```swift class DefaultImplCaller: SomeProtocol { private...
- Update `NeedleFoundation.RootComponent` to `BootstrapComponent` - Add an example for injecting dynamic dependency
https://developer.apple.com/documentation/swift/optional/unsafelyunwrapped According to the document > This property trades safety for performance. But it's safe by design. So it would be better to use it for performance. Should we run...
### Description if the child state is `Identifiable`, the dismiss action is not be sent when dismissed. I think #3309 introduced this issue. ### Checklist - [X] I have determined...