Skip to content

Instantly share code, notes, and snippets.

@ezura
Created September 8, 2017 04:58
Show Gist options
  • Save ezura/eb1f6353fdfc9c23b0bc3dffa27242d0 to your computer and use it in GitHub Desktop.
Save ezura/eb1f6353fdfc9c23b0bc3dffa27242d0 to your computer and use it in GitHub Desktop.
extension Optional: CustomStringConvertible {
public var description: String {
switch self {
case .none:
return ""
case .some(let wrapped):
return "\(wrapped)"
}
}
}
"\("sss" as Optional)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment