David W. Berry
David W. Berry
…lled twice if final data sends data
Addresses https://github.com/mrylmz/Prototype/issues/3 by adding support for generic form types to `.form`, `.view`, and `.settings`.
Given: ``` @Prototype(kind: .form) struct Wrapper where Data: SomeProtocol { var field: String } ``` the following should be generated: ``` struct WrapperForm where Data: SomeProtocol { @Binding var model:...
Given: ``` @Prototype(kind: .form) struct Model where Data: Numeric { var value: Data } ``` the generated form should read through the `Data` generic value to the `Numeric` type to...