Last active
March 8, 2018 18:08
-
-
Save ceeK/cddea396e1c5b3be2afa7963f4316e7a to your computer and use it in GitHub Desktop.
AutoBuildable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension Car: AutoBuildable {} | |
// run Sourcery | |
// get this for free! -> | |
let car = CarBuilder(wheels: 4) // any param without a default value goes into the initializer | |
.set(color: .red) | |
.set(hasCruiseControl: true) | |
.make() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment