Skip to content

Instantly share code, notes, and snippets.

@slavapestov
Last active March 21, 2018 09:33
Show Gist options
  • Save slavapestov/7d8b4baf12d3dd48429e65a91c389d00 to your computer and use it in GitHub Desktop.
Save slavapestov/7d8b4baf12d3dd48429e65a91c389d00 to your computer and use it in GitHub Desktop.
struct AnyEncodable : Encodable {
var wrapped: Encodable
func encode(to encoder: Encoder) throws {
try wrapped.encode(to: encoder)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment