Skip to content

Instantly share code, notes, and snippets.

@bharath2020
Last active April 1, 2017 20:31
Show Gist options
  • Save bharath2020/a47137593b38aecd542866c861913919 to your computer and use it in GitHub Desktop.
Save bharath2020/a47137593b38aecd542866c861913919 to your computer and use it in GitHub Desktop.
Optional description
func unwrappedDescription<T>(_ value: Optional<T>) -> String {
guard let value = value else {
return "None."
}
return "\(value)"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment