You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This release allows nested JSON types to be initialized with JSON. This wasn't possible before because trying to initialize an array of JSON types inside of a dictionary would fail because [JSON] couldn't be coerced into [JSON] because the json accessor didn't check if self was already JSON. Now, it does.
Add boolValue(forKey:), doubleValue(forKey:), and intValue(forKey:) to Dictionary<String, Any> to make it easier to access concrete types from dictionaries processed by JSON.