This file contains hidden or 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
| import Foundation | |
| /// Provides a default value for missing `Decodable` data. | |
| /// | |
| /// `DefaultCodableStrategy` provides a generic strategy type that the `DefaultCodable` property wrapper can use to provide a reasonable default value for missing Decodable data. | |
| public protocol DefaultCodableStrategy { | |
| associatedtype RawValue: Codable | |
| static var defaultValue: RawValue { get } | |
| } |