KeyedDecodingContainer

public extension KeyedDecodingContainer
  • Undocumented

    Declaration

    Swift

    func decode(_ type: [String : Any].Type, forKey key: K) throws -> [String : Any]
  • Undocumented

    Declaration

    Swift

    func decode(_: [[String : Any]].Type, forKey key: K) throws -> [[String : Any]]
  • Undocumented

    Declaration

    Swift

    func decodeIfPresent(_ type: [String : Any].Type, forKey key: K) throws -> [String : Any]?
  • Undocumented

    Declaration

    Swift

    func decode(_ type: [Any].Type, forKey key: K) throws -> [Any]
  • Undocumented

    Declaration

    Swift

    func decodeIfPresent(_ type: [Any].Type, forKey key: K) throws -> [Any]?
  • Undocumented

    Declaration

    Swift

    func decode(_: [String : Any].Type) throws -> [String : Any]