我尝试掌握Argo进行json解码.在文档中有解码功能的例子
extension User: Decodable { static func decode(j: JSON) -> Decoded{ return curry(User.init) <^> j <| "id" <*> j <| "name" } }
是什么<^>
和<*>
意味着什么?他们之间有什么区别?
根据Github文档 ...
<^>
是map
功能
和
<*>
是apply
功能
这两个都在这里描述... https://robots.thoughtbot.com/functional-swift-for-dealing-with-optional-values
从Github页面链接.
NB阅读文档:)