David W. Berry

Results 4 issues of David W. Berry

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...