Skip to content

Builder 1.0.2

Compare
Choose a tag to compare
@jihoonahn jihoonahn released this 11 Oct 14:01
· 53 commits to main since this release

What's Changed

  • Support Swift Version: 5.7 -> 5.9
  • Builder Library Support Macro
  • Macro Docc Support
@Builder
struct Person {
   var name: String?
   var age: Int?
}

let team = Person()
   .builder()
   .name("Jihoon")
   .age(20)
   .build()