Created
January 27, 2023 16:48
-
-
Save es-kumagai/77952cc194bbde0e5613c96898dbefc2 to your computer and use it in GitHub Desktop.
while let shorthand ⋯ #CodePiece
This file contains 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
var values = [1, 2, 3, 4, 5] | |
var value: Int? { values.popLast() } | |
while let value { | |
print(value) | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment