Please turn on JavaScript in your browser and refresh the page to view its content.
Technology
On This Page
indirect enum JSONValue
case array([JSONValue])
case bool(Bool)
case dictionary([String : JSONValue])
case double(Double)
case `nil`
case string(String)
init(from: Decoder) throws
var array: [JSONValue]?
var bool: Bool?
var dictionary: [String : JSONValue]?
var double: Double?
var isNil: Bool
var string: String?
Swift.Decodable