UInt
extension UInt: Identifier
Extends UInt
to comply to the Identifier
protocol.
Usage Example:
// The Identifier used in the Id field could be an `UInt`.
public typealias IdentifierCodableClosure<Id: Identifier, I: Codable, O: Codable> = (Id, I, @escaping CodableResultClosure<O>) -> Void
-
Creates an unsigned integer identifier from a given string representation.
Throws
AnIdentifierError.invalidValue
if the given string cannot be converted to an unsigned integer.Declaration
Swift
public init(value: String) throws
-
The string representation of the identifier.
Declaration
Swift
public var value: String { get }