Skip to content

Instantly share code, notes, and snippets.

@Otbivnoe
Created December 15, 2016 08:18
Show Gist options
  • Save Otbivnoe/5f75428e5f99cbceb0548ccb6b1968b4 to your computer and use it in GitHub Desktop.
Save Otbivnoe/5f75428e5f99cbceb0548ccb6b1968b4 to your computer and use it in GitHub Desktop.
extension RawRepresentable {
init?(value: Self.RawValue?) {
if let value = value {
self.init(rawValue: value)
}
else {
return nil
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment