Created
June 5, 2019 06:09
-
-
Save balrajOla/c7075ef40f652b2e079cc1dbd466a5c8 to your computer and use it in GitHub Desktop.
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
// Original source code: | |
@TupleBuilder | |
func build() -> (String, String, Int) { | |
"a" | |
"b" | |
1 | |
} | |
// This code is interpreted exactly as if it were this code: | |
func build() -> (String, String, Int) { | |
let _a = "a" | |
let _b = "b" | |
let _c = 1 | |
return TupleBuilder.buildBlock(_a, _b, _c) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment