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 | |
| /// A type that privides mutation interface for a wrapped value. | |
| public struct Mutation<Value> { | |
| /// The wrapped value. | |
| public var value: Value | |
| /// Creates an instance that wraps the given value. | |
| /// | |
| /// - Parameter value: The value to store. |
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 | |
| /// https://source.unsplash.com | |
| public struct Unsplash { | |
| public struct Source: RawRepresentable { | |
| public let rawValue: String | |
| public init(rawValue: String) { | |
| self.rawValue = rawValue | |
| } |
OlderNewer