Skip to content

Instantly share code, notes, and snippets.

@davbeck
Last active November 26, 2019 17:46
Show Gist options
  • Save davbeck/470629a58ed9a84ee4bf2ee5a073623d to your computer and use it in GitHub Desktop.
Save davbeck/470629a58ed9a84ee4bf2ee5a073623d to your computer and use it in GitHub Desktop.
import Foundation
/// Allows a property to fail decoding, defaulting to nil instead of surfacing the error.
@propertyWrapper
struct AllowDecodeFailure<Wrapped>: Codable where Wrapped: Codable {
var wrappedValue: Wrapped?
init() {
self.wrappedValue = nil
}
init(wrappedValue: Wrapped?) {
self.wrappedValue = wrappedValue
}
init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
self.wrappedValue = try? container.decode(Wrapped.self)
}
}
extension AllowDecodeFailure: Equatable where Wrapped: Equatable {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment