Skip to content

Instantly share code, notes, and snippets.

View MahdiBM's full-sized avatar

Mahdi Bahrami MahdiBM

View GitHub Profile
@MahdiBM
MahdiBM / DecodeNilable.swift
Created April 20, 2021 13:11
PropertyWrapper for Codable to not fail when finding `nil`
import Foundation
//MARK: - EmptyInitializable
protocol EmptyInitializable {
init()
}
extension String: EmptyInitializable {}
extension Bool: EmptyInitializable {}
extension Int: EmptyInitializable {}