L
Size: a a a
L
S
L
R:
A
R:
A
R:
public static func decode(json: JSON) -> Post? {
return _JSONParse(json) >>> { d in
Post.create
<^> d <| "id"
<*> d <| "text"
<*> d <| "author" <| "name"
<*> d <| "comments"
}
}
S
S
public static func decode(json: JSON) -> Post? {
return _JSONParse(json) >>> { d in
Post.create
<^> d <| "id"
<*> d <| "text"
<*> d <| "author" <| "name"
<*> d <| "comments"
}
}
R:
R:
R:
A
public static func decode(json: JSON) -> Post? {
return _JSONParse(json) >>> { d in
Post.create
<^> d <| "id"
<*> d <| "text"
<*> d <| "author" <| "name"
<*> d <| "comments"
}
}
R:
S
R:
S
R:
S