ValueExtractor
public protocol ValueExtractor<ValueType>
An object from which you can extract an optional value.
-
The type of value that can be extracted.
Declaration
Swift
associatedtype ValueType -
Declaration
Swift
func getValue() -> ValueType?Return Value
The value, if it’s present in the object, or nil.
View on GitHub