Improves Decodable by collecting additional state including decoding errors and null.
Add Decoded to your Package.swift file.
dependencies: [
...
.package(url: "https://github.com/siemensikkema/Decoded.git", from: "0.4.0"),
]
...
targets: [
.target(
name: "MyTarget",
dependencies: [
...
"Decoded",
]
)
]Import Decoded to any file you want to use this library in.
import DecodedThis library's documentation is created using DocC and can be found here.