Last active
September 5, 2024 04:04
-
-
Save Otbivnoe/04b8bd7984fba0cb58ca7f136fd95582 to your computer and use it in GitHub Desktop.
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
extension UserDefaults { | |
subscript<T>(key: String) -> T? { | |
get { | |
return value(forKey: key) as? T | |
} | |
set { | |
set(newValue, forKey: key) | |
} | |
} | |
subscript<T: RawRepresentable>(key: String) -> T? { | |
get { | |
if let rawValue = value(forKey: key) as? T.RawValue { | |
return T(rawValue: rawValue) | |
} | |
return nil | |
} | |
set { | |
set(newValue?.rawValue, forKey: key) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can actually make it even less redundant:
Replace (line 19):
set(newValue?.rawValue, forKey: key)
with:
self[key] = newValue?.rawValue