├── .codecov.yml ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .jazzy.yaml ├── .swiftlint.yml ├── .travis.yml ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Gemfile ├── Gyb.cmake ├── LICENSE ├── Package.swift ├── Package.xcconfig ├── README.md ├── Sources ├── CMakeLists.txt ├── Documentation │ ├── Abstracts │ │ ├── BinaryDecoder.md │ │ ├── BinaryEncoder.md │ │ ├── Encoding & Decoding.md │ │ └── Supplemental Information.md │ ├── Index │ │ └── Index.md │ └── Sections │ │ ├── Binary Format Diagram.cddz │ │ ├── Binary Format.md │ │ ├── Binary-Format-Container-Header.png │ │ ├── Binary-Format-Keyed-Container.png │ │ ├── Binary-Format-Single-Value-Container.png │ │ └── Binary-Format-Unkeyed-Container.png └── StickyEncoding │ ├── BinaryCodingKey.swift │ ├── BinaryDecoder.swift │ ├── BinaryEncoder.swift │ ├── CodingKey+Extensions.swift │ ├── DecodingError+Extensions.swift │ ├── EncodedType.swift │ ├── KeyedStorageContainer.swift │ ├── MemoryAlignment.swift │ ├── NullStorageContainer.swift │ ├── PassthroughReference.swift │ ├── SingleValueContainer.swift │ ├── StorageContainer.swift │ ├── StorageContainerReaderWriter.swift │ ├── StrorageContainerReference.swift │ └── UnkeyedStorageContainer.swift ├── StickyEncoding.podspec ├── Tests ├── CMakeLists.txt ├── LinuxMain.swift └── StickyEncodingTests │ ├── BinaryCodingKeyTests.swift │ ├── BinaryDecoder+ByteArrayTests.swift │ ├── BinaryDecoderNegativeTests.swift │ ├── BinaryEncoder+ByteArrayTests.swift │ ├── BinaryEncoderNegativeTests.swift │ ├── BinaryEncodingKeyedContainerNegativeTests.swift │ ├── BinaryEncodingKeyedContainerNegativeTests.swift.gyb │ ├── BinaryEncodingKeyedContainerTests.swift │ ├── BinaryEncodingKeyedContainerTests.swift.gyb │ ├── BinaryEncodingSingleValueContainerNegativeTests.swift │ ├── BinaryEncodingSingleValueContainerNegativeTests.swift.gyb │ ├── BinaryEncodingSingleValueContainerTests.swift │ ├── BinaryEncodingSingleValueContainerTests.swift.gyb │ ├── BinaryEncodingStructuredTypeTests.swift │ ├── BinaryEncodingUnkeyedContainerNegativeTests.swift │ ├── BinaryEncodingUnkeyedContainerNegativeTests.swift.gyb │ ├── BinaryEncodingUnkeyedContainerTests.swift │ ├── BinaryEncodingUnkeyedContainerTests.swift.gyb │ ├── BinaryEncodingUserInfoTests.swift │ ├── DecodingError+ExtensionsTests.swift │ ├── DocumentationExampleTests.swift │ ├── EncodeDecodeTester.swift │ ├── EncodedTypeTests.swift │ ├── EncodedTypeTests.swift.gyb │ ├── FoundationTests.swift │ ├── KeyedStorageContainerTests.swift │ ├── SingleValueContainerTests.swift │ ├── SingleValueContainerTests.swift.gyb │ ├── StorageContainer+Equal.swift │ ├── StorageContainer+EqualTests.swift │ ├── StorageContainerReaderWriterTests.swift │ ├── StorageContainerReferenceTests.swift │ ├── StorageContainerTests.swift │ ├── TestFixtures │ ├── BasicType.swift │ ├── CodableType.swift │ ├── ComplexSubclassClass.swift │ ├── ComplexType.swift │ └── EquatableType.swift │ ├── UnkeyedStorageContainerTests.swift │ └── XCTestManifests.swift └── docs ├── Binary-Format-Container-Header.png ├── Binary-Format-Keyed-Container.png ├── Binary-Format-Single-Value-Container.png ├── Binary-Format-Unkeyed-Container.png ├── Classes ├── BinaryDecoder.html └── BinaryEncoder.html ├── Encoding & Decoding.html ├── Supplemental Information.html ├── badge.svg ├── binary-format.html ├── css ├── highlight.css └── jazzy.css ├── docsets ├── StickyEncoding.docset │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── Documents │ │ ├── Classes │ │ │ ├── BinaryDecoder.html │ │ │ └── BinaryEncoder.html │ │ ├── Encoding & Decoding.html │ │ ├── Supplemental Information.html │ │ ├── binary-format.html │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ ├── gh.png │ │ │ └── spinner.gif │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ ├── jazzy.search.js │ │ │ ├── jquery.min.js │ │ │ ├── lunr.min.js │ │ │ └── typeahead.jquery.js │ │ └── search.json │ │ └── docSet.dsidx └── StickyEncoding.tgz ├── img ├── carat.png ├── dash.png ├── gh.png └── spinner.gif ├── index.html ├── js ├── jazzy.js ├── jazzy.search.js ├── jquery.min.js ├── lunr.min.js └── typeahead.jquery.js ├── search.json └── undocumented.json /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/.gitignore -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Gemfile -------------------------------------------------------------------------------- /Gyb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Gyb.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Package.swift -------------------------------------------------------------------------------- /Package.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Package.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/Documentation/Abstracts/BinaryDecoder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/Documentation/Abstracts/BinaryEncoder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/Documentation/Abstracts/Encoding & Decoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/Documentation/Abstracts/Encoding & Decoding.md -------------------------------------------------------------------------------- /Sources/Documentation/Abstracts/Supplemental Information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/Documentation/Abstracts/Supplemental Information.md -------------------------------------------------------------------------------- /Sources/Documentation/Index/Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/Documentation/Index/Index.md -------------------------------------------------------------------------------- /Sources/Documentation/Sections/Binary Format Diagram.cddz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/Documentation/Sections/Binary Format Diagram.cddz -------------------------------------------------------------------------------- /Sources/Documentation/Sections/Binary Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/Documentation/Sections/Binary Format.md -------------------------------------------------------------------------------- /Sources/Documentation/Sections/Binary-Format-Container-Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/Documentation/Sections/Binary-Format-Container-Header.png -------------------------------------------------------------------------------- /Sources/Documentation/Sections/Binary-Format-Keyed-Container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/Documentation/Sections/Binary-Format-Keyed-Container.png -------------------------------------------------------------------------------- /Sources/Documentation/Sections/Binary-Format-Single-Value-Container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/Documentation/Sections/Binary-Format-Single-Value-Container.png -------------------------------------------------------------------------------- /Sources/Documentation/Sections/Binary-Format-Unkeyed-Container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/Documentation/Sections/Binary-Format-Unkeyed-Container.png -------------------------------------------------------------------------------- /Sources/StickyEncoding/BinaryCodingKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/BinaryCodingKey.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/BinaryDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/BinaryDecoder.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/BinaryEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/BinaryEncoder.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/CodingKey+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/CodingKey+Extensions.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/DecodingError+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/DecodingError+Extensions.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/EncodedType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/EncodedType.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/KeyedStorageContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/KeyedStorageContainer.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/MemoryAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/MemoryAlignment.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/NullStorageContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/NullStorageContainer.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/PassthroughReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/PassthroughReference.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/SingleValueContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/SingleValueContainer.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/StorageContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/StorageContainer.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/StorageContainerReaderWriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/StorageContainerReaderWriter.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/StrorageContainerReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/StrorageContainerReference.swift -------------------------------------------------------------------------------- /Sources/StickyEncoding/UnkeyedStorageContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Sources/StickyEncoding/UnkeyedStorageContainer.swift -------------------------------------------------------------------------------- /StickyEncoding.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/StickyEncoding.podspec -------------------------------------------------------------------------------- /Tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryCodingKeyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryCodingKeyTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryDecoder+ByteArrayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryDecoder+ByteArrayTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryDecoderNegativeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryDecoderNegativeTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncoder+ByteArrayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncoder+ByteArrayTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncoderNegativeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncoderNegativeTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingKeyedContainerNegativeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingKeyedContainerNegativeTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingKeyedContainerNegativeTests.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingKeyedContainerNegativeTests.swift.gyb -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingKeyedContainerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingKeyedContainerTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingKeyedContainerTests.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingKeyedContainerTests.swift.gyb -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingSingleValueContainerNegativeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingSingleValueContainerNegativeTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingSingleValueContainerNegativeTests.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingSingleValueContainerNegativeTests.swift.gyb -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingSingleValueContainerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingSingleValueContainerTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingSingleValueContainerTests.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingSingleValueContainerTests.swift.gyb -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingStructuredTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingStructuredTypeTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingUnkeyedContainerNegativeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingUnkeyedContainerNegativeTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingUnkeyedContainerNegativeTests.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingUnkeyedContainerNegativeTests.swift.gyb -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingUnkeyedContainerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingUnkeyedContainerTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingUnkeyedContainerTests.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingUnkeyedContainerTests.swift.gyb -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/BinaryEncodingUserInfoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/BinaryEncodingUserInfoTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/DecodingError+ExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/DecodingError+ExtensionsTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/DocumentationExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/DocumentationExampleTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/EncodeDecodeTester.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/EncodeDecodeTester.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/EncodedTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/EncodedTypeTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/EncodedTypeTests.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/EncodedTypeTests.swift.gyb -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/FoundationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/FoundationTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/KeyedStorageContainerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/KeyedStorageContainerTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/SingleValueContainerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/SingleValueContainerTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/SingleValueContainerTests.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/SingleValueContainerTests.swift.gyb -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/StorageContainer+Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/StorageContainer+Equal.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/StorageContainer+EqualTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/StorageContainer+EqualTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/StorageContainerReaderWriterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/StorageContainerReaderWriterTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/StorageContainerReferenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/StorageContainerReferenceTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/StorageContainerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/StorageContainerTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/TestFixtures/BasicType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/TestFixtures/BasicType.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/TestFixtures/CodableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/TestFixtures/CodableType.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/TestFixtures/ComplexSubclassClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/TestFixtures/ComplexSubclassClass.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/TestFixtures/ComplexType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/TestFixtures/ComplexType.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/TestFixtures/EquatableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/TestFixtures/EquatableType.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/UnkeyedStorageContainerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/UnkeyedStorageContainerTests.swift -------------------------------------------------------------------------------- /Tests/StickyEncodingTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/Tests/StickyEncodingTests/XCTestManifests.swift -------------------------------------------------------------------------------- /docs/Binary-Format-Container-Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/Binary-Format-Container-Header.png -------------------------------------------------------------------------------- /docs/Binary-Format-Keyed-Container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/Binary-Format-Keyed-Container.png -------------------------------------------------------------------------------- /docs/Binary-Format-Single-Value-Container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/Binary-Format-Single-Value-Container.png -------------------------------------------------------------------------------- /docs/Binary-Format-Unkeyed-Container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/Binary-Format-Unkeyed-Container.png -------------------------------------------------------------------------------- /docs/Classes/BinaryDecoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/Classes/BinaryDecoder.html -------------------------------------------------------------------------------- /docs/Classes/BinaryEncoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/Classes/BinaryEncoder.html -------------------------------------------------------------------------------- /docs/Encoding & Decoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/Encoding & Decoding.html -------------------------------------------------------------------------------- /docs/Supplemental Information.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/Supplemental Information.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/binary-format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/binary-format.html -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/Classes/BinaryDecoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/Classes/BinaryDecoder.html -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/Classes/BinaryEncoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/Classes/BinaryEncoder.html -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/Encoding & Decoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/Encoding & Decoding.html -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/Supplemental Information.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/Supplemental Information.html -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/binary-format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/binary-format.html -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/img/spinner.gif -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/js/lunr.min.js -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/StickyEncoding.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/docsets/StickyEncoding.tgz -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/img/spinner.gif -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/js/lunr.min.js -------------------------------------------------------------------------------- /docs/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stickytools/sticky-encoding/HEAD/docs/undocumented.json --------------------------------------------------------------------------------