├── .github └── CONTRIBUTING ├── .gitignore ├── .jazzy.yaml ├── .swift-version ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── BasicUsage.playground ├── Contents.swift ├── contents.xcplayground └── playground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Cartfile ├── Cartfile.resolved ├── LICENSE ├── MetaSerialization.podspec ├── MetaSerialization.xcodeproj ├── MetaSerialization.xcworkspace │ └── contents.xcworkspacedata ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ ├── xcbaselines │ └── 633D4D8D206264EF00ADFF91.xcbaseline │ │ ├── 675CC3F6-6E95-493E-80D9-EA9D42073856.plist │ │ └── Info.plist │ └── xcschemes │ ├── MetaSerialization iOS.xcscheme │ ├── MetaSerialization macOS.xcscheme │ ├── MetaSerialization tvOS.xcscheme │ ├── MetaSerialization watchOS.xcscheme │ ├── MetaSerializationTests-iOS.xcscheme │ ├── MetaSerializationTests-macOS.xcscheme │ └── MetaSerializationTests-tvOS.xcscheme ├── Package.resolved ├── Package.swift ├── README.md ├── SWIFT-LICENSE.txt ├── Sources └── MetaSerialization │ ├── Coding Storage │ ├── CodingStorage.swift │ ├── LinearCodingStack.swift │ └── README.md │ ├── Decoder │ ├── Containers │ │ ├── KeyedDecodingContainer.swift │ │ ├── SingleValueDecodingContainer.swift │ │ └── UnkeyedDecodingContainer.swift │ ├── MetaDecoder+containerMethods.swift │ ├── MetaDecoder+frontend.swift │ ├── MetaDecoder.swift │ ├── README.md │ └── Unwrapper.swift │ ├── Encoder │ ├── Containers │ │ ├── MetaKeyedEncodingContainer.swift │ │ ├── MetaSingleValueEncodingContainer.swift │ │ └── MetaUnkeyedEncodingContainer.swift │ ├── MetaEncoder+containerMethods.swift │ ├── MetaEncoder+frontend.swift │ ├── MetaEncoder.swift │ ├── MetaSupplier.swift │ ├── README.md │ ├── Reference │ │ ├── Reference.swift │ │ └── ReferencingStorage.swift │ └── Utilities │ │ └── ErrorContainer.swift │ ├── Frontends and Default Implementations │ ├── MetaSupplier and Unwrapper Implementations │ │ ├── PrimitivesEnumTranslator+Primitives.swift │ │ ├── PrimitivesEnumTranslator.swift │ │ └── PrimitivesProtocolTranslator.swift │ ├── OrderedKeyedContainer.swift │ ├── Representation │ │ ├── Representation+Default Implementations.swift │ │ └── Representation.swift │ └── Serialization │ │ ├── Serialization+Default Implementations.swift │ │ ├── Serialization.swift │ │ └── SimpleSerialization.swift │ ├── Info.plist │ ├── Meta │ ├── Array+UnkeyedContainerMeta.swift │ ├── Dictionary+KeyedContainerMeta.swift │ ├── KeyedContainerMeta.swift │ ├── MetaSupplier+Defaults.swift │ ├── Metas.swift │ ├── NilMarker+NilMeta.swift │ └── UnkeyedContainerMeta.swift │ ├── MetaSerialization.h │ ├── README.md │ └── Supporting │ ├── CodingKeys.swift │ ├── DirectlyCodable.swift │ ├── Foundation Primitive Codables.swift │ └── NilMarker.swift ├── Tests ├── LinuxMain.swift ├── MetaSerializationTests │ ├── CodingKeyTest.swift │ ├── Example1Tests.swift │ ├── Example2Tests.swift │ ├── Example3Tests.swift │ ├── Examples │ │ ├── Example1 │ │ │ ├── Container.swift │ │ │ ├── Example1.swift │ │ │ └── README.md │ │ ├── Example2 DynamicUnwrap │ │ │ ├── DecodingKeyedContainerMeta.swift │ │ │ ├── DecodingUnkeyedContainerMeta.swift │ │ │ ├── EncodingContainerMeta.swift │ │ │ ├── Example2.swift │ │ │ ├── Example2Metas.swift │ │ │ ├── Example2Serialization.swift │ │ │ ├── Nil+LosslessStringConvertible.swift │ │ │ └── README.md │ │ ├── Example2Translator.swift │ │ ├── Example3 │ │ │ ├── Example3.swift │ │ │ ├── Example3Encoder.swift │ │ │ ├── Example3Metas.swift │ │ │ ├── Example3Representation.swift │ │ │ ├── Example3Translator.swift │ │ │ ├── README.md │ │ │ └── WrapperSerialization.swift │ │ └── README.md │ ├── General Tests │ │ ├── AdditionalCodables.swift │ │ ├── Codables.swift │ │ ├── PerformanceTestsCodables.swift │ │ ├── StandardBehavior.swift │ │ └── StateRestoringAfterThrow.swift │ ├── Info.plist │ ├── PerformanceTests.swift │ ├── README.md │ └── Utilities │ │ └── TestUtilities.swift └── TestAssertionGuarded │ ├── DirectlyCodable.swift │ ├── Info.plist │ ├── README.md │ ├── ShortExample.swift │ └── TestCodingStorageErrorCatching.swift └── docs ├── Classes.html ├── Classes ├── LinearCodingStack.html ├── MetaDecoder.html ├── MetaDecoder │ └── Errors.html ├── MetaEncoder.html ├── MetaEncoder │ └── Errors.html ├── MetaKeyedDecodingContainer.html ├── MetaKeyedEncodingContainer.html ├── MetaSingleValueDecodingContainer.html ├── MetaSingleValueEncodingContainer.html ├── MetaUnkeyedDecodingContainer.html ├── MetaUnkeyedEncodingContainer.html ├── ReferencingCodingStorage.html └── SimpleSerialization.html ├── Enums.html ├── Enums ├── Reference.html └── SpecialCodingKey.html ├── Extensions.html ├── Extensions ├── Array.html └── Dictionary.html ├── Guides.html ├── Guides ├── About MetaSerialization.md ├── Getting-Started.md ├── Installation.md ├── Introduction.md └── README.md ├── Protocols.html ├── Protocols ├── CodingStorage.html ├── ContainerElementReference.html ├── DecodingKeyedContainerMeta.html ├── DecodingRepresentation.html ├── DecodingUnkeyedContainerMeta.html ├── DirectlyDecodable.html ├── DirectlyEncodable.html ├── EncodingKeyedContainerMeta.html ├── EncodingRepresentation.html ├── EncodingUnkeyedContainerMeta.html ├── IntermediateDecoder.html ├── IntermediateEncoder.html ├── MetaSupplier.html ├── UnkeyedContainerMeta.html └── Unwrapper.html ├── Structs.html ├── Structs ├── CodingStorageError.html ├── CodingStorageError │ └── Reason.html ├── IndexCodingKey.html ├── KeyedContainerElementReference.html ├── KeyedErrorContainer.html ├── MetaCodingKey.html ├── NilMarker.html ├── PrimitivesEnumTranslator.html ├── PrimitivesEnumTranslator │ └── Primitive.html ├── PrimitivesProtocolTranslator.html ├── StandardCodingKey.html └── UnkeyedContainerElementReference.html ├── Typealiases.html ├── about-metaserialization.html ├── badge.svg ├── css ├── highlight.css └── jazzy.css ├── docsets ├── MetaSerialization.docset │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── Documents │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── LinearCodingStack.html │ │ │ ├── MetaDecoder.html │ │ │ ├── MetaDecoder │ │ │ │ └── Errors.html │ │ │ ├── MetaEncoder.html │ │ │ ├── MetaEncoder │ │ │ │ └── Errors.html │ │ │ ├── MetaKeyedDecodingContainer.html │ │ │ ├── MetaKeyedEncodingContainer.html │ │ │ ├── MetaSingleValueDecodingContainer.html │ │ │ ├── MetaSingleValueEncodingContainer.html │ │ │ ├── MetaUnkeyedDecodingContainer.html │ │ │ ├── MetaUnkeyedEncodingContainer.html │ │ │ ├── ReferencingCodingStorage.html │ │ │ └── SimpleSerialization.html │ │ ├── Enums.html │ │ ├── Enums │ │ │ ├── Reference.html │ │ │ └── SpecialCodingKey.html │ │ ├── Extensions.html │ │ ├── Extensions │ │ │ ├── Array.html │ │ │ └── Dictionary.html │ │ ├── Guides.html │ │ ├── Guides │ │ │ ├── About MetaSerialization.md │ │ │ ├── Example Implementations.md │ │ │ ├── Getting-Started.md │ │ │ ├── Installation.md │ │ │ ├── Introduction.md │ │ │ └── README.md │ │ ├── Protocols.html │ │ ├── Protocols │ │ │ ├── CodingStorage.html │ │ │ ├── ContainerElementReference.html │ │ │ ├── DecodingKeyedContainerMeta.html │ │ │ ├── DecodingRepresentation.html │ │ │ ├── DecodingUnkeyedContainerMeta.html │ │ │ ├── DirectlyDecodable.html │ │ │ ├── DirectlyEncodable.html │ │ │ ├── EncodingKeyedContainerMeta.html │ │ │ ├── EncodingRepresentation.html │ │ │ ├── EncodingUnkeyedContainerMeta.html │ │ │ ├── IntermediateDecoder.html │ │ │ ├── IntermediateEncoder.html │ │ │ ├── MetaSupplier.html │ │ │ ├── UnkeyedContainerMeta.html │ │ │ └── Unwrapper.html │ │ ├── Structs.html │ │ ├── Structs │ │ │ ├── CodingStorageError.html │ │ │ ├── CodingStorageError │ │ │ │ └── Reason.html │ │ │ ├── IndexCodingKey.html │ │ │ ├── KeyedContainerElementReference.html │ │ │ ├── KeyedErrorContainer.html │ │ │ ├── MetaCodingKey.html │ │ │ ├── NilMarker.html │ │ │ ├── PrimitivesEnumTranslator.html │ │ │ ├── PrimitivesEnumTranslator │ │ │ │ └── Primitive.html │ │ │ ├── PrimitivesProtocolTranslator.html │ │ │ ├── StandardCodingKey.html │ │ │ └── UnkeyedContainerElementReference.html │ │ ├── Typealiases.html │ │ ├── about-metaserialization.html │ │ ├── badge.svg │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── example-implementations.html │ │ ├── getting-started.html │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ ├── gh.png │ │ │ └── spinner.gif │ │ ├── index.html │ │ ├── installation.html │ │ ├── introduction.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ ├── jazzy.search.js │ │ │ ├── jquery.min.js │ │ │ ├── lunr.min.js │ │ │ └── typeahead.jquery.js │ │ ├── readme.html │ │ ├── search.json │ │ └── undocumented.json │ │ └── docSet.dsidx └── MetaSerialization.tgz ├── example-implementations.html ├── getting-started.html ├── img ├── carat.png ├── dash.png ├── gh.png └── spinner.gif ├── index.html ├── installation.html ├── introduction.html ├── js ├── jazzy.js ├── jazzy.search.js ├── jquery.min.js ├── lunr.min.js └── typeahead.jquery.js ├── readme.html ├── search.json └── undocumented.json /.github/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/.github/CONTRIBUTING -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/.gitignore -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.2 2 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/.travis.yml -------------------------------------------------------------------------------- /BasicUsage.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/BasicUsage.playground/Contents.swift -------------------------------------------------------------------------------- /BasicUsage.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/BasicUsage.playground/contents.xcplayground -------------------------------------------------------------------------------- /BasicUsage.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/BasicUsage.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BasicUsage.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/BasicUsage.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/LICENSE -------------------------------------------------------------------------------- /MetaSerialization.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.podspec -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/MetaSerialization.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/MetaSerialization.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/xcshareddata/xcbaselines/633D4D8D206264EF00ADFF91.xcbaseline/675CC3F6-6E95-493E-80D9-EA9D42073856.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/xcshareddata/xcbaselines/633D4D8D206264EF00ADFF91.xcbaseline/675CC3F6-6E95-493E-80D9-EA9D42073856.plist -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/xcshareddata/xcbaselines/633D4D8D206264EF00ADFF91.xcbaseline/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/xcshareddata/xcbaselines/633D4D8D206264EF00ADFF91.xcbaseline/Info.plist -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerialization iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerialization iOS.xcscheme -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerialization macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerialization macOS.xcscheme -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerialization tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerialization tvOS.xcscheme -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerialization watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerialization watchOS.xcscheme -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerializationTests-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerializationTests-iOS.xcscheme -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerializationTests-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerializationTests-macOS.xcscheme -------------------------------------------------------------------------------- /MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerializationTests-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/MetaSerialization.xcodeproj/xcshareddata/xcschemes/MetaSerializationTests-tvOS.xcscheme -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/README.md -------------------------------------------------------------------------------- /SWIFT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/SWIFT-LICENSE.txt -------------------------------------------------------------------------------- /Sources/MetaSerialization/Coding Storage/CodingStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Coding Storage/CodingStorage.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Coding Storage/LinearCodingStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Coding Storage/LinearCodingStack.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Coding Storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Coding Storage/README.md -------------------------------------------------------------------------------- /Sources/MetaSerialization/Decoder/Containers/KeyedDecodingContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Decoder/Containers/KeyedDecodingContainer.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Decoder/Containers/SingleValueDecodingContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Decoder/Containers/SingleValueDecodingContainer.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Decoder/Containers/UnkeyedDecodingContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Decoder/Containers/UnkeyedDecodingContainer.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Decoder/MetaDecoder+containerMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Decoder/MetaDecoder+containerMethods.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Decoder/MetaDecoder+frontend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Decoder/MetaDecoder+frontend.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Decoder/MetaDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Decoder/MetaDecoder.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Decoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Decoder/README.md -------------------------------------------------------------------------------- /Sources/MetaSerialization/Decoder/Unwrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Decoder/Unwrapper.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Encoder/Containers/MetaKeyedEncodingContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Encoder/Containers/MetaKeyedEncodingContainer.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Encoder/Containers/MetaSingleValueEncodingContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Encoder/Containers/MetaSingleValueEncodingContainer.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Encoder/Containers/MetaUnkeyedEncodingContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Encoder/Containers/MetaUnkeyedEncodingContainer.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Encoder/MetaEncoder+containerMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Encoder/MetaEncoder+containerMethods.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Encoder/MetaEncoder+frontend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Encoder/MetaEncoder+frontend.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Encoder/MetaEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Encoder/MetaEncoder.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Encoder/MetaSupplier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Encoder/MetaSupplier.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Encoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Encoder/README.md -------------------------------------------------------------------------------- /Sources/MetaSerialization/Encoder/Reference/Reference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Encoder/Reference/Reference.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Encoder/Reference/ReferencingStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Encoder/Reference/ReferencingStorage.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Encoder/Utilities/ErrorContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Encoder/Utilities/ErrorContainer.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Frontends and Default Implementations/MetaSupplier and Unwrapper Implementations/PrimitivesEnumTranslator+Primitives.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Frontends and Default Implementations/MetaSupplier and Unwrapper Implementations/PrimitivesEnumTranslator+Primitives.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Frontends and Default Implementations/MetaSupplier and Unwrapper Implementations/PrimitivesEnumTranslator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Frontends and Default Implementations/MetaSupplier and Unwrapper Implementations/PrimitivesEnumTranslator.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Frontends and Default Implementations/MetaSupplier and Unwrapper Implementations/PrimitivesProtocolTranslator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Frontends and Default Implementations/MetaSupplier and Unwrapper Implementations/PrimitivesProtocolTranslator.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Frontends and Default Implementations/OrderedKeyedContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Frontends and Default Implementations/OrderedKeyedContainer.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Frontends and Default Implementations/Representation/Representation+Default Implementations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Frontends and Default Implementations/Representation/Representation+Default Implementations.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Frontends and Default Implementations/Representation/Representation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Frontends and Default Implementations/Representation/Representation.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Frontends and Default Implementations/Serialization/Serialization+Default Implementations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Frontends and Default Implementations/Serialization/Serialization+Default Implementations.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Frontends and Default Implementations/Serialization/Serialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Frontends and Default Implementations/Serialization/Serialization.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Frontends and Default Implementations/Serialization/SimpleSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Frontends and Default Implementations/Serialization/SimpleSerialization.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Info.plist -------------------------------------------------------------------------------- /Sources/MetaSerialization/Meta/Array+UnkeyedContainerMeta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Meta/Array+UnkeyedContainerMeta.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Meta/Dictionary+KeyedContainerMeta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Meta/Dictionary+KeyedContainerMeta.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Meta/KeyedContainerMeta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Meta/KeyedContainerMeta.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Meta/MetaSupplier+Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Meta/MetaSupplier+Defaults.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Meta/Metas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Meta/Metas.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Meta/NilMarker+NilMeta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Meta/NilMarker+NilMeta.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Meta/UnkeyedContainerMeta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Meta/UnkeyedContainerMeta.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/MetaSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/MetaSerialization.h -------------------------------------------------------------------------------- /Sources/MetaSerialization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/README.md -------------------------------------------------------------------------------- /Sources/MetaSerialization/Supporting/CodingKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Supporting/CodingKeys.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Supporting/DirectlyCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Supporting/DirectlyCodable.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Supporting/Foundation Primitive Codables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Supporting/Foundation Primitive Codables.swift -------------------------------------------------------------------------------- /Sources/MetaSerialization/Supporting/NilMarker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Sources/MetaSerialization/Supporting/NilMarker.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/CodingKeyTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/CodingKeyTest.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Example1Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Example1Tests.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Example2Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Example2Tests.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Example3Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Example3Tests.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example1/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example1/Container.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example1/Example1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example1/Example1.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example1/README.md -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/DecodingKeyedContainerMeta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/DecodingKeyedContainerMeta.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/DecodingUnkeyedContainerMeta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/DecodingUnkeyedContainerMeta.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/EncodingContainerMeta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/EncodingContainerMeta.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/Example2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/Example2.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/Example2Metas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/Example2Metas.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/Example2Serialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/Example2Serialization.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/Nil+LosslessStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/Nil+LosslessStringConvertible.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example2 DynamicUnwrap/README.md -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example2Translator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example2Translator.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example3/Example3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example3/Example3.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example3/Example3Encoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example3/Example3Encoder.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example3/Example3Metas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example3/Example3Metas.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example3/Example3Representation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example3/Example3Representation.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example3/Example3Translator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example3/Example3Translator.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example3/README.md -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/Example3/WrapperSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/Example3/WrapperSerialization.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Examples/README.md -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/General Tests/AdditionalCodables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/General Tests/AdditionalCodables.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/General Tests/Codables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/General Tests/Codables.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/General Tests/PerformanceTestsCodables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/General Tests/PerformanceTestsCodables.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/General Tests/StandardBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/General Tests/StandardBehavior.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/General Tests/StateRestoringAfterThrow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/General Tests/StateRestoringAfterThrow.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Info.plist -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/PerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/PerformanceTests.swift -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/README.md -------------------------------------------------------------------------------- /Tests/MetaSerializationTests/Utilities/TestUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/MetaSerializationTests/Utilities/TestUtilities.swift -------------------------------------------------------------------------------- /Tests/TestAssertionGuarded/DirectlyCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/TestAssertionGuarded/DirectlyCodable.swift -------------------------------------------------------------------------------- /Tests/TestAssertionGuarded/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/TestAssertionGuarded/Info.plist -------------------------------------------------------------------------------- /Tests/TestAssertionGuarded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/TestAssertionGuarded/README.md -------------------------------------------------------------------------------- /Tests/TestAssertionGuarded/ShortExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/TestAssertionGuarded/ShortExample.swift -------------------------------------------------------------------------------- /Tests/TestAssertionGuarded/TestCodingStorageErrorCatching.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/Tests/TestAssertionGuarded/TestCodingStorageErrorCatching.swift -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/LinearCodingStack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/LinearCodingStack.html -------------------------------------------------------------------------------- /docs/Classes/MetaDecoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/MetaDecoder.html -------------------------------------------------------------------------------- /docs/Classes/MetaDecoder/Errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/MetaDecoder/Errors.html -------------------------------------------------------------------------------- /docs/Classes/MetaEncoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/MetaEncoder.html -------------------------------------------------------------------------------- /docs/Classes/MetaEncoder/Errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/MetaEncoder/Errors.html -------------------------------------------------------------------------------- /docs/Classes/MetaKeyedDecodingContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/MetaKeyedDecodingContainer.html -------------------------------------------------------------------------------- /docs/Classes/MetaKeyedEncodingContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/MetaKeyedEncodingContainer.html -------------------------------------------------------------------------------- /docs/Classes/MetaSingleValueDecodingContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/MetaSingleValueDecodingContainer.html -------------------------------------------------------------------------------- /docs/Classes/MetaSingleValueEncodingContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/MetaSingleValueEncodingContainer.html -------------------------------------------------------------------------------- /docs/Classes/MetaUnkeyedDecodingContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/MetaUnkeyedDecodingContainer.html -------------------------------------------------------------------------------- /docs/Classes/MetaUnkeyedEncodingContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/MetaUnkeyedEncodingContainer.html -------------------------------------------------------------------------------- /docs/Classes/ReferencingCodingStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/ReferencingCodingStorage.html -------------------------------------------------------------------------------- /docs/Classes/SimpleSerialization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Classes/SimpleSerialization.html -------------------------------------------------------------------------------- /docs/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Enums.html -------------------------------------------------------------------------------- /docs/Enums/Reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Enums/Reference.html -------------------------------------------------------------------------------- /docs/Enums/SpecialCodingKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Enums/SpecialCodingKey.html -------------------------------------------------------------------------------- /docs/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Extensions.html -------------------------------------------------------------------------------- /docs/Extensions/Array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Extensions/Array.html -------------------------------------------------------------------------------- /docs/Extensions/Dictionary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Extensions/Dictionary.html -------------------------------------------------------------------------------- /docs/Guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Guides.html -------------------------------------------------------------------------------- /docs/Guides/About MetaSerialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Guides/About MetaSerialization.md -------------------------------------------------------------------------------- /docs/Guides/Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Guides/Getting-Started.md -------------------------------------------------------------------------------- /docs/Guides/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Guides/Installation.md -------------------------------------------------------------------------------- /docs/Guides/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Guides/Introduction.md -------------------------------------------------------------------------------- /docs/Guides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Guides/README.md -------------------------------------------------------------------------------- /docs/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols.html -------------------------------------------------------------------------------- /docs/Protocols/CodingStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/CodingStorage.html -------------------------------------------------------------------------------- /docs/Protocols/ContainerElementReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/ContainerElementReference.html -------------------------------------------------------------------------------- /docs/Protocols/DecodingKeyedContainerMeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/DecodingKeyedContainerMeta.html -------------------------------------------------------------------------------- /docs/Protocols/DecodingRepresentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/DecodingRepresentation.html -------------------------------------------------------------------------------- /docs/Protocols/DecodingUnkeyedContainerMeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/DecodingUnkeyedContainerMeta.html -------------------------------------------------------------------------------- /docs/Protocols/DirectlyDecodable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/DirectlyDecodable.html -------------------------------------------------------------------------------- /docs/Protocols/DirectlyEncodable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/DirectlyEncodable.html -------------------------------------------------------------------------------- /docs/Protocols/EncodingKeyedContainerMeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/EncodingKeyedContainerMeta.html -------------------------------------------------------------------------------- /docs/Protocols/EncodingRepresentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/EncodingRepresentation.html -------------------------------------------------------------------------------- /docs/Protocols/EncodingUnkeyedContainerMeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/EncodingUnkeyedContainerMeta.html -------------------------------------------------------------------------------- /docs/Protocols/IntermediateDecoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/IntermediateDecoder.html -------------------------------------------------------------------------------- /docs/Protocols/IntermediateEncoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/IntermediateEncoder.html -------------------------------------------------------------------------------- /docs/Protocols/MetaSupplier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/MetaSupplier.html -------------------------------------------------------------------------------- /docs/Protocols/UnkeyedContainerMeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/UnkeyedContainerMeta.html -------------------------------------------------------------------------------- /docs/Protocols/Unwrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Protocols/Unwrapper.html -------------------------------------------------------------------------------- /docs/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs.html -------------------------------------------------------------------------------- /docs/Structs/CodingStorageError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs/CodingStorageError.html -------------------------------------------------------------------------------- /docs/Structs/CodingStorageError/Reason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs/CodingStorageError/Reason.html -------------------------------------------------------------------------------- /docs/Structs/IndexCodingKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs/IndexCodingKey.html -------------------------------------------------------------------------------- /docs/Structs/KeyedContainerElementReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs/KeyedContainerElementReference.html -------------------------------------------------------------------------------- /docs/Structs/KeyedErrorContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs/KeyedErrorContainer.html -------------------------------------------------------------------------------- /docs/Structs/MetaCodingKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs/MetaCodingKey.html -------------------------------------------------------------------------------- /docs/Structs/NilMarker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs/NilMarker.html -------------------------------------------------------------------------------- /docs/Structs/PrimitivesEnumTranslator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs/PrimitivesEnumTranslator.html -------------------------------------------------------------------------------- /docs/Structs/PrimitivesEnumTranslator/Primitive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs/PrimitivesEnumTranslator/Primitive.html -------------------------------------------------------------------------------- /docs/Structs/PrimitivesProtocolTranslator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs/PrimitivesProtocolTranslator.html -------------------------------------------------------------------------------- /docs/Structs/StandardCodingKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs/StandardCodingKey.html -------------------------------------------------------------------------------- /docs/Structs/UnkeyedContainerElementReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Structs/UnkeyedContainerElementReference.html -------------------------------------------------------------------------------- /docs/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/Typealiases.html -------------------------------------------------------------------------------- /docs/about-metaserialization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/about-metaserialization.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/LinearCodingStack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/LinearCodingStack.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaDecoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaDecoder.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaDecoder/Errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaDecoder/Errors.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaEncoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaEncoder.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaEncoder/Errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaEncoder/Errors.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaKeyedDecodingContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaKeyedDecodingContainer.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaKeyedEncodingContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaKeyedEncodingContainer.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaSingleValueDecodingContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaSingleValueDecodingContainer.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaSingleValueEncodingContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaSingleValueEncodingContainer.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaUnkeyedDecodingContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaUnkeyedDecodingContainer.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaUnkeyedEncodingContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/MetaUnkeyedEncodingContainer.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/ReferencingCodingStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/ReferencingCodingStorage.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/SimpleSerialization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Classes/SimpleSerialization.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Enums.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Enums/Reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Enums/Reference.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Enums/SpecialCodingKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Enums/SpecialCodingKey.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Extensions.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Extensions/Array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Extensions/Array.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Extensions/Dictionary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Extensions/Dictionary.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides/About MetaSerialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides/About MetaSerialization.md -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides/Example Implementations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides/Example Implementations.md -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides/Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides/Getting-Started.md -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides/Installation.md -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides/Introduction.md -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Guides/README.md -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/CodingStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/CodingStorage.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/ContainerElementReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/ContainerElementReference.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/DecodingKeyedContainerMeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/DecodingKeyedContainerMeta.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/DecodingRepresentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/DecodingRepresentation.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/DecodingUnkeyedContainerMeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/DecodingUnkeyedContainerMeta.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/DirectlyDecodable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/DirectlyDecodable.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/DirectlyEncodable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/DirectlyEncodable.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/EncodingKeyedContainerMeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/EncodingKeyedContainerMeta.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/EncodingRepresentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/EncodingRepresentation.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/EncodingUnkeyedContainerMeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/EncodingUnkeyedContainerMeta.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/IntermediateDecoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/IntermediateDecoder.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/IntermediateEncoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/IntermediateEncoder.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/MetaSupplier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/MetaSupplier.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/UnkeyedContainerMeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/UnkeyedContainerMeta.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/Unwrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Protocols/Unwrapper.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/CodingStorageError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/CodingStorageError.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/CodingStorageError/Reason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/CodingStorageError/Reason.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/IndexCodingKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/IndexCodingKey.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/KeyedContainerElementReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/KeyedContainerElementReference.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/KeyedErrorContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/KeyedErrorContainer.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/MetaCodingKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/MetaCodingKey.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/NilMarker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/NilMarker.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/PrimitivesEnumTranslator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/PrimitivesEnumTranslator.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/PrimitivesEnumTranslator/Primitive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/PrimitivesEnumTranslator/Primitive.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/PrimitivesProtocolTranslator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/PrimitivesProtocolTranslator.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/StandardCodingKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/StandardCodingKey.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/UnkeyedContainerElementReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Structs/UnkeyedContainerElementReference.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/Typealiases.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/about-metaserialization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/about-metaserialization.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/badge.svg -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/example-implementations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/example-implementations.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/getting-started.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/img/spinner.gif -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/installation.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/introduction.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/js/lunr.min.js -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/readme.html -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/Documents/undocumented.json -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/MetaSerialization.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/docsets/MetaSerialization.tgz -------------------------------------------------------------------------------- /docs/example-implementations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/example-implementations.html -------------------------------------------------------------------------------- /docs/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/getting-started.html -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/img/spinner.gif -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/installation.html -------------------------------------------------------------------------------- /docs/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/introduction.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/js/lunr.min.js -------------------------------------------------------------------------------- /docs/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/readme.html -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherrywoods/swift-meta-serialization/HEAD/docs/undocumented.json --------------------------------------------------------------------------------