This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import XCTest | |
/// JSON supports two widely used (amongst programming languages) data structures. | |
/// This protocol is to define them. | |
protocol JSONStructure { | |
associatedtype Container: Any | |
static var container: Container { get } | |
} | |
/// **A collection of name/value pairs**. |