We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi.
It looks like this is an implementation for the swift guard let.
guard let
Do you think it is a bit misleading to call it just guard?
guard
guard condition else { return }
The guard statement is an early-exit function.
According to Swift.org:
A guard statement is used to transfer program control out of a scope if one or more conditions aren’t met.
N.B. I was looking for a kotlin version of a guard statement and ended up finding this repository.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hi.
It looks like this is an implementation for the swift
guard let
.Do you think it is a bit misleading to call it just
guard
?The guard statement is an early-exit function.
According to Swift.org:
N.B. I was looking for a kotlin version of a guard statement and ended up finding this repository.
The text was updated successfully, but these errors were encountered: