mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
Merge branch 'hotfix-2.2.2'
This commit is contained in:
+2
-2
@@ -4,9 +4,9 @@ exclude: Tests/
|
||||
swift_version: 3.0.2
|
||||
author: Timofey Solomko
|
||||
module: SWCompression
|
||||
module_version: 2.2.1
|
||||
module_version: 2.2.2
|
||||
copyright: '© 2017 Timofey Solomko'
|
||||
readme: README.md
|
||||
github_url: https://github.com/tsolomko/SWCompression
|
||||
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/v2.2.1
|
||||
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/v2.2.2
|
||||
theme: fullwidth
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
# Changelog
|
||||
v2.2.2
|
||||
----------------
|
||||
- Fixed problem with zero-length uncompressed blocks.
|
||||
|
||||
v2.2.1
|
||||
----------------
|
||||
- Now creates uncompressed block instead of huffman if it will provide better results (in terms of "compression").
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Pod::Spec.new do |s|
|
||||
|
||||
s.name = "SWCompression"
|
||||
s.version = "2.2.1"
|
||||
s.version = "2.2.2"
|
||||
s.summary = "Framework with implementations in Swift of different (de)compression algorithms"
|
||||
|
||||
s.description = <<-DESC
|
||||
|
||||
@@ -278,7 +278,11 @@ public final class Deflate: DecompressionAlgorithm {
|
||||
}
|
||||
let staticHuffmanBlockSize = bitsCount % 8 == 0 ? bitsCount / 8 : bitsCount / 8 + 1
|
||||
|
||||
if uncompBlockSize <= staticHuffmanBlockSize {
|
||||
// Since `length` of uncompressed block is 16-bit integer,
|
||||
// there is a limitation on size of uncompressed block.
|
||||
// Falling back to static Huffman encoding in case of big uncompressed block is a band-aid solution.
|
||||
// TODO: Implement spliting uncompressed block into smaller blocks.
|
||||
if uncompBlockSize <= staticHuffmanBlockSize && uncompBlockSize <= 65535 {
|
||||
// In case if according to our calculations static huffman will only make output data then input,
|
||||
// we fallback to creating uncompressed block.
|
||||
// In this case dynamic Huffman encoding can be efficient.
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.2.1</string>
|
||||
<string>2.2.2</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.2.1</string>
|
||||
<string>2.2.2</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.2.1</string>
|
||||
<string>2.2.2</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.2.1</string>
|
||||
<string>2.2.2</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
|
||||
+8
-8
@@ -186,7 +186,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L38-L106">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L38-L106">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -221,7 +221,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L180-L221">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L180-L221">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -256,7 +256,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L77-L236">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L77-L236">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -291,7 +291,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L44-L90">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L44-L90">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -326,7 +326,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L125-L157">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L125-L157">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -361,7 +361,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L32-L471">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L32-L475">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -396,7 +396,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L47-L277">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L47-L277">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -431,7 +431,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L58-L346">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L58-L346">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -226,7 +226,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L61-L97">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L61-L97">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -226,7 +226,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L46-L50">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L46-L50">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -267,7 +267,7 @@ static Huffman is used in all other cases.
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L238-L290">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L238-L294">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -234,7 +234,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L198-L219">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L198-L219">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -226,7 +226,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L58-L63">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L58-L63">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -226,7 +226,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L52-L59">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L52-L59">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -230,7 +230,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L76-L143">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L76-L143">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L82">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L82">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -272,7 +272,7 @@ It may indicate that either the container is damaged or it might not be ZIP cont
|
||||
</table>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L103-L132">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L103-L132">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -336,7 +336,7 @@ An error can indicate that the container is damaged.</p>
|
||||
</table>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L145-L204">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L145-L204">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -421,7 +421,7 @@ It may indicate that either the container is damaged or it might not be ZIP cont
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L227-L234">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L227-L234">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -234,7 +234,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L143-L155">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L143-L155">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+8
-8
@@ -195,7 +195,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L21-L35">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L21-L35">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -242,7 +242,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L24-L40">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L24-L40">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -292,7 +292,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L27-L48">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L27-L48">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -341,7 +341,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L26-L41">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L26-L41">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -386,7 +386,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L22-L36">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L22-L36">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -429,7 +429,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L20-L29">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L20-L29">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -477,7 +477,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L25-L44">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L25-L44">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -528,7 +528,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L28-L55">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L28-L55">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -205,7 +205,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L27">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L27">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -239,7 +239,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L29">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L29">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -273,7 +273,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L31">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L31">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -307,7 +307,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L33">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L33">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -341,7 +341,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L35">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L35">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -375,7 +375,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L37">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L37">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -409,7 +409,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L39">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L39">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -443,7 +443,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L41">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L41">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -477,7 +477,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L43">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L43">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -200,7 +200,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L22">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L22">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -234,7 +234,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L24">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L24">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -268,7 +268,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L26">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L26">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -302,7 +302,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L28">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L28">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -204,7 +204,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L26">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L26">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -238,7 +238,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L28">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L28">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -272,7 +272,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L30">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L30">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -306,7 +306,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L32">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L32">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -341,7 +341,7 @@ Associated value contains already decompressed data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L37">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L37">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -375,7 +375,7 @@ Associated value contains already decompressed data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L39">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L39">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -201,7 +201,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L23">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L23">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -235,7 +235,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L25">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L25">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -269,7 +269,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L27">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L27">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -303,7 +303,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L29">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L29">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -338,7 +338,7 @@ amount of compressed data read was different from the one stored in LZMA2 packet
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L34">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L34">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -206,7 +206,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L28">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L28">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -240,7 +240,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L30">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L30">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -274,7 +274,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L32">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L32">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -308,7 +308,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L34">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L34">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -342,7 +342,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L36">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L36">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -376,7 +376,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L38">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L38">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -410,7 +410,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L40">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L40">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+10
-10
@@ -208,7 +208,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L30">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L30">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -242,7 +242,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L32">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L32">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -276,7 +276,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L34">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L34">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -310,7 +310,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L36">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L36">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -344,7 +344,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L38">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L38">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -378,7 +378,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L40">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L40">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -413,7 +413,7 @@ amount of compressed data read was different from the one stored in block header
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L45">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L45">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -448,7 +448,7 @@ Associated value contains already decompressed data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L50">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L50">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -482,7 +482,7 @@ Associated value contains already decompressed data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L52">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L52">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -516,7 +516,7 @@ Associated value contains already decompressed data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L54">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L54">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+10
-10
@@ -207,7 +207,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L29">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L29">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -241,7 +241,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L31">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L31">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -275,7 +275,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L33">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L33">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -309,7 +309,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L35">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L35">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -343,7 +343,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L37">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L37">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -377,7 +377,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L39">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L39">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -411,7 +411,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L41">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L41">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -445,7 +445,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L43">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L43">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -479,7 +479,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L45">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L45">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -513,7 +513,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L47">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L47">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -202,7 +202,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L24">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L24">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -236,7 +236,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L26">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L26">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -270,7 +270,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L28">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L28">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -304,7 +304,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L30">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L30">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -339,7 +339,7 @@ Associated value contains already decompressed data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L35">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L35">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+2
-2
@@ -186,7 +186,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Protocols.swift#L12-L17">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Protocols.swift#L12-L17">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -217,7 +217,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Protocols.swift#L20-L25">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Protocols.swift#L20-L25">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Protocols.swift#L15">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Protocols.swift#L15">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Protocols.swift#L23">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Protocols.swift#L23">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+3
-3
@@ -186,7 +186,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L43-L177">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L43-L177">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -221,7 +221,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L51-L74">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L51-L74">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -256,7 +256,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L39-L122">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L39-L122">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -193,7 +193,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L54-L57">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L54-L57">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -224,7 +224,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L60-L71">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L60-L71">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -254,7 +254,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L74">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L74">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -284,7 +284,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L76">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L76">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -314,7 +314,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L78">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L78">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -344,7 +344,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L80">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L80">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -374,7 +374,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L82">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L82">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -433,7 +433,7 @@ it might not be compressed with gzip at all.</p>
|
||||
</table>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L95-L98">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L95-L98">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L56">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L56">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L62">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L62">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -226,7 +226,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L64">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L64">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -260,7 +260,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L66">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L66">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -294,7 +294,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L68">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L68">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -328,7 +328,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L70">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L70">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L56-L58">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L56-L58">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -222,7 +222,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L61-L63">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L61-L63">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -252,7 +252,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L66-L68">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L66-L68">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -193,7 +193,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L42-L45">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L42-L45">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -224,7 +224,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L48-L57">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L48-L57">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -254,7 +254,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L60">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L60">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -284,7 +284,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L62">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L62">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -314,7 +314,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L64">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L64">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -373,7 +373,7 @@ it might not be compressed with zlib at all.</p>
|
||||
</table>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L76-L79">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L76-L79">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L50">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L50">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -226,7 +226,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L52">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L52">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -260,7 +260,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L54">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L54">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -294,7 +294,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L56">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L56">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L44">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L44">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="136" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="136" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path fill="#555" d="M0 0h93v20H0z"/><path fill="#4c1" d="M93 0h43v20H93z"/><path fill="url(#b)" d="M0 0h136v20H0z"/></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="11"><text x="46.5" y="15" fill="#010101" fill-opacity=".3">documentation</text><text x="46.5" y="14">documentation</text><text x="113.5" y="15" fill="#010101" fill-opacity=".3">100%</text><text x="113.5" y="14">100%</text></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="136" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="136" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path fill="#555" d="M0 0h93v20H0z"/><path fill="#4c1" d="M93 0h43v20H93z"/><path fill="url(#b)" d="M0 0h136v20H0z"/></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="11"><text x="46.5" y="15" fill="#010101" fill-opacity=".3">documentation</text><text x="46.5" y="14">documentation</text><text x="113.5" y="15" fill="#010101" fill-opacity=".3">100%</text><text x="113.5" y="14">100%</text></g></svg>
|
||||
|
Before Width: | Height: | Size: 764 B After Width: | Height: | Size: 807 B |
@@ -186,7 +186,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L38-L106">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L38-L106">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -221,7 +221,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L180-L221">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L180-L221">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -256,7 +256,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L77-L236">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L77-L236">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -291,7 +291,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L44-L90">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L44-L90">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -326,7 +326,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L125-L157">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L125-L157">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -361,7 +361,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L32-L471">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L32-L475">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -396,7 +396,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L47-L277">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L47-L277">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -431,7 +431,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L58-L346">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L58-L346">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -226,7 +226,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L61-L97">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L61-L97">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -226,7 +226,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L46-L50">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L46-L50">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -267,7 +267,7 @@ static Huffman is used in all other cases.
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L238-L290">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L238-L294">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+1
-1
@@ -234,7 +234,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L198-L219">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L198-L219">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -226,7 +226,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L58-L63">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L58-L63">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -226,7 +226,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L52-L59">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L52-L59">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+1
-1
@@ -230,7 +230,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L76-L143">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L76-L143">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+4
-4
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L82">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L82">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -272,7 +272,7 @@ It may indicate that either the container is damaged or it might not be ZIP cont
|
||||
</table>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L103-L132">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L103-L132">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -336,7 +336,7 @@ An error can indicate that the container is damaged.</p>
|
||||
</table>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L145-L204">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L145-L204">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -421,7 +421,7 @@ It may indicate that either the container is damaged or it might not be ZIP cont
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L227-L234">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L227-L234">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+1
-1
@@ -234,7 +234,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L143-L155">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L143-L155">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -195,7 +195,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L21-L35">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L21-L35">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -242,7 +242,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L24-L40">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L24-L40">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -292,7 +292,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L27-L48">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L27-L48">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -341,7 +341,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L26-L41">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L26-L41">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -386,7 +386,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L22-L36">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L22-L36">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -429,7 +429,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L20-L29">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L20-L29">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -477,7 +477,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L25-L44">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L25-L44">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -528,7 +528,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L28-L55">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L28-L55">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+9
-9
@@ -205,7 +205,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L27">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L27">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -239,7 +239,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L29">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L29">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -273,7 +273,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L31">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L31">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -307,7 +307,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L33">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L33">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -341,7 +341,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L35">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L35">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -375,7 +375,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L37">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L37">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -409,7 +409,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L39">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L39">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -443,7 +443,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L41">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L41">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -477,7 +477,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/BZip2.swift#L43">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/BZip2.swift#L43">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+4
-4
@@ -200,7 +200,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L22">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L22">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -234,7 +234,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L24">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L24">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -268,7 +268,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L26">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L26">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -302,7 +302,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Deflate.swift#L28">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Deflate.swift#L28">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -204,7 +204,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L26">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L26">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -238,7 +238,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L28">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L28">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -272,7 +272,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L30">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L30">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -306,7 +306,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L32">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L32">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -341,7 +341,7 @@ Associated value contains already decompressed data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L37">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L37">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -375,7 +375,7 @@ Associated value contains already decompressed data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L39">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L39">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+5
-5
@@ -201,7 +201,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L23">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L23">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -235,7 +235,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L25">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L25">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -269,7 +269,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L27">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L27">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -303,7 +303,7 @@ It may indicate that either the data is damaged or it might not be compressed wi
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L29">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L29">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -338,7 +338,7 @@ amount of compressed data read was different from the one stored in LZMA2 packet
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA2.swift#L34">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA2.swift#L34">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -206,7 +206,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L28">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L28">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -240,7 +240,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L30">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L30">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -274,7 +274,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L32">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L32">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -308,7 +308,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L34">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L34">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -342,7 +342,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L36">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L36">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -376,7 +376,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L38">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L38">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -410,7 +410,7 @@ than the repeat length.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/LZMA.swift#L40">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/LZMA.swift#L40">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -208,7 +208,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L30">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L30">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -242,7 +242,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L32">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L32">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -276,7 +276,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L34">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L34">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -310,7 +310,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L36">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L36">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -344,7 +344,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L38">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L38">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -378,7 +378,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L40">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L40">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -413,7 +413,7 @@ amount of compressed data read was different from the one stored in block header
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L45">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L45">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -448,7 +448,7 @@ Associated value contains already decompressed data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L50">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L50">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -482,7 +482,7 @@ Associated value contains already decompressed data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L52">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L52">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -516,7 +516,7 @@ Associated value contains already decompressed data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/XZArchive.swift#L54">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/XZArchive.swift#L54">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+10
-10
@@ -207,7 +207,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L29">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L29">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -241,7 +241,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L31">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L31">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -275,7 +275,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L33">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L33">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -309,7 +309,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L35">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L35">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -343,7 +343,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L37">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L37">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -377,7 +377,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L39">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L39">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -411,7 +411,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L41">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L41">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -445,7 +445,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L43">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L43">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -479,7 +479,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L45">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L45">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -513,7 +513,7 @@ It may indicate that either the data is damaged or it might not be ZIP archive (
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L47">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L47">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -202,7 +202,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L24">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L24">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -236,7 +236,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L26">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L26">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -270,7 +270,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L28">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L28">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -304,7 +304,7 @@ Associated value contains already decompressed data.</li>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L30">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L30">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -339,7 +339,7 @@ Associated value contains already decompressed data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L35">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L35">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -186,7 +186,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Protocols.swift#L12-L17">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Protocols.swift#L12-L17">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -217,7 +217,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Protocols.swift#L20-L25">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Protocols.swift#L20-L25">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+1
-1
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Protocols.swift#L15">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Protocols.swift#L15">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+1
-1
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/Protocols.swift#L23">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/Protocols.swift#L23">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -186,7 +186,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L43-L177">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L43-L177">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -221,7 +221,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L51-L74">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L51-L74">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -256,7 +256,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L39-L122">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L39-L122">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+8
-8
@@ -193,7 +193,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L54-L57">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L54-L57">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -224,7 +224,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L60-L71">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L60-L71">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -254,7 +254,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L74">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L74">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -284,7 +284,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L76">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L76">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -314,7 +314,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L78">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L78">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -344,7 +344,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L80">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L80">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -374,7 +374,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L82">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L82">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -433,7 +433,7 @@ it might not be compressed with gzip at all.</p>
|
||||
</table>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L95-L98">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L95-L98">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+1
-1
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L56">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L56">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+5
-5
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L62">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L62">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -226,7 +226,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L64">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L64">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -260,7 +260,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L66">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L66">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -294,7 +294,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L68">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L68">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -328,7 +328,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/GzipArchive.swift#L70">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/GzipArchive.swift#L70">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+3
-3
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L56-L58">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L56-L58">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -222,7 +222,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L61-L63">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L61-L63">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -252,7 +252,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZipContainer.swift#L66-L68">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZipContainer.swift#L66-L68">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+6
-6
@@ -193,7 +193,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L42-L45">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L42-L45">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -224,7 +224,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L48-L57">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L48-L57">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -254,7 +254,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L60">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L60">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -284,7 +284,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L62">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L62">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -314,7 +314,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L64">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L64">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -373,7 +373,7 @@ it might not be compressed with zlib at all.</p>
|
||||
</table>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L76-L79">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L76-L79">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+4
-4
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L50">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L50">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -226,7 +226,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L52">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L52">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -260,7 +260,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L54">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L54">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
@@ -294,7 +294,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L56">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L56">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
+1
-1
@@ -192,7 +192,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="slightly-smaller">
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.1/Sources/ZlibArchive.swift#L44">Show on GitHub</a>
|
||||
<a href="https://github.com/tsolomko/SWCompression/tree/v2.2.2/Sources/ZlibArchive.swift#L44">Show on GitHub</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user