Preparations for 2.4.0.

This commit is contained in:
Timofey Solomko
2017-04-22 21:25:24 +03:00
parent 62042d870a
commit 3980bee603
69 changed files with 394 additions and 249 deletions
+2 -2
View File
@@ -4,9 +4,9 @@ exclude: Tests/
swift_version: 3.1
author: Timofey Solomko
module: SWCompression
module_version: 2.3.0
module_version: 2.4.0
copyright: '© 2017 Timofey Solomko'
readme: README.md
github_url: https://github.com/tsolomko/SWCompression
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/v2.3.0
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/v2.4.0
theme: fullwidth
+5
View File
@@ -1,4 +1,9 @@
# Changelog
v2.4.0
----------------
- Reduced memory usage in some cases.
- Added Zlib archiving function.
v2.3.0
----------------
- Improved Deflate compression performance.
+1 -1
View File
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "SWCompression"
s.version = "2.3.0"
s.version = "2.4.0"
s.summary = "Framework with implementations in Swift of different (de)compression algorithms"
s.description = <<-DESC
+1 -1
View File
@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.3.0</string>
<string>2.4.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
+1 -1
View File
@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.3.0</string>
<string>2.4.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
+1 -1
View File
@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.3.0</string>
<string>2.4.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
+1 -1
View File
@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.3.0</string>
<string>2.4.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
+8 -8
View File
@@ -186,7 +186,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/LZMA2.swift#L38-L106">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L182-L268">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L182-L268">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.3.0/Sources/ZipContainer.swift#L77-L236">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L44-L90">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L125-L157">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZlibArchive.swift#L125-L189">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.3.0/Sources/Deflate.swift#L32-L518">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/Deflate.swift#L32-L518">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.3.0/Sources/BZip2.swift#L47-L277">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L58-L346">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/XZArchive.swift#L58-L346">Show on GitHub</a>
</div>
</section>
</div>
+1 -1
View File
@@ -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.3.0/Sources/BZip2.swift#L61-L97">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/BZip2.swift#L61-L97">Show on GitHub</a>
</div>
</section>
</div>
+2 -2
View File
@@ -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.3.0/Sources/Deflate.swift#L79-L83">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/Deflate.swift#L79-L83">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.3.0/Sources/Deflate.swift#L271-L327">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/Deflate.swift#L271-L327">Show on GitHub</a>
</div>
</section>
</div>
+2 -2
View File
@@ -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.3.0/Sources/GzipArchive.swift#L200-L221">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L200-L221">Show on GitHub</a>
</div>
</section>
</div>
@@ -306,7 +306,7 @@ It will be also specified that the compressor used slowest DEFLATE algorithm.</p
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L239-L266">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L239-L266">Show on GitHub</a>
</div>
</section>
</div>
+1 -1
View File
@@ -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.3.0/Sources/LZMA.swift#L58-L63">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/LZMA.swift#L58-L63">Show on GitHub</a>
</div>
</section>
</div>
+1 -1
View File
@@ -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.3.0/Sources/LZMA2.swift#L52-L59">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/LZMA2.swift#L52-L59">Show on GitHub</a>
</div>
</section>
</div>
+1 -1
View File
@@ -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.3.0/Sources/XZArchive.swift#L76-L143">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/XZArchive.swift#L76-L143">Show on GitHub</a>
</div>
</section>
</div>
+4 -4
View File
@@ -192,7 +192,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/ZipContainer.swift#L82">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L103-L132">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L145-L204">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L227-L234">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZipContainer.swift#L227-L234">Show on GitHub</a>
</div>
</section>
</div>
+71 -1
View File
@@ -234,7 +234,77 @@ 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.3.0/Sources/ZlibArchive.swift#L143-L155">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZlibArchive.swift#L143-L155">Show on GitHub</a>
</div>
</section>
</div>
</li>
<li class="item">
<div>
<code>
<a name="/s:ZFC13SWCompression11ZlibArchive7archiveFzT4dataV10Foundation4Data_S2_"></a>
<a name="//apple_ref/swift/Method/archive(data:)" class="dashAnchor"></a>
<a class="token" href="#/s:ZFC13SWCompression11ZlibArchive7archiveFzT4dataV10Foundation4Data_S2_">archive(data:)</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Archives <code>data</code> into Zlib archive. Data will be also compressed with DEFLTATE algorithm.
It will be specified in archive&rsquo;s header that the compressor used slowest DEFLATE algorithm.</p>
<p>If during compression something goes wrong <code><a href="../Enums/DeflateError.html">DeflateError</a></code> will be thrown.</p>
<div class="aside aside-note">
<p class="aside-title">Note</p>
<p>This function is specification compliant.</p>
</div>
<div class="aside aside-throws">
<p class="aside-title">Throws</p>
<p><code><a href="../Enums/DeflateError.html">DeflateError</a></code> if an error was encountered during compression.</p>
</div>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight"><code><span class="kd">public</span> <span class="kd">static</span> <span class="kd">func</span> <span class="nf">archive</span><span class="p">(</span><span class="nv">data</span><span class="p">:</span> <span class="kt">Data</span><span class="p">)</span> <span class="k">throws</span> <span class="o">-&gt;</span> <span class="kt">Data</span></code></pre>
</div>
</div>
<div>
<h4>Parameters</h4>
<table class="graybox">
<tbody>
<tr>
<td>
<code>
<em>data</em>
</code>
</td>
<td>
<div>
<p>Data to compress and archive.</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div>
<h4>Return Value</h4>
<p>Data object with resulting archive.</p>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZlibArchive.swift#L171-L187">Show on GitHub</a>
</div>
</section>
</div>
+8 -8
View File
@@ -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.3.0/Sources/LZMA2.swift#L21-L35">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L24-L40">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L27-L48">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L26-L41">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L22-L36">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Deflate.swift#L20-L29">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L25-L44">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L28-L55">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/XZArchive.swift#L28-L55">Show on GitHub</a>
</div>
</section>
</div>
+9 -9
View File
@@ -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.3.0/Sources/BZip2.swift#L27">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L29">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L31">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L33">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L35">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L37">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L39">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L41">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L43">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/BZip2.swift#L43">Show on GitHub</a>
</div>
</section>
</div>
+4 -4
View File
@@ -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.3.0/Sources/Deflate.swift#L22">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Deflate.swift#L24">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Deflate.swift#L26">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Deflate.swift#L28">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/Deflate.swift#L28">Show on GitHub</a>
</div>
</section>
</div>
+6 -6
View File
@@ -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.3.0/Sources/GzipArchive.swift#L26">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L28">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L30">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L32">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L37">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L39">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L39">Show on GitHub</a>
</div>
</section>
</div>
+5 -5
View File
@@ -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.3.0/Sources/LZMA2.swift#L23">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA2.swift#L25">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA2.swift#L27">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA2.swift#L29">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA2.swift#L34">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/LZMA2.swift#L34">Show on GitHub</a>
</div>
</section>
</div>
+7 -7
View File
@@ -206,7 +206,7 @@ than the repeat length.</li>
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/LZMA.swift#L28">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L30">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L32">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L34">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L36">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L38">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L40">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/LZMA.swift#L40">Show on GitHub</a>
</div>
</section>
</div>
+10 -10
View File
@@ -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.3.0/Sources/XZArchive.swift#L30">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L32">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L34">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L36">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L38">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L40">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L45">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L50">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L52">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L54">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/XZArchive.swift#L54">Show on GitHub</a>
</div>
</section>
</div>
+10 -10
View File
@@ -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.3.0/Sources/ZipContainer.swift#L29">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L31">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L33">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L35">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L37">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L39">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L41">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L43">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L45">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L47">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZipContainer.swift#L47">Show on GitHub</a>
</div>
</section>
</div>
+5 -5
View File
@@ -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.3.0/Sources/ZlibArchive.swift#L24">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L26">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L28">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L30">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L35">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZlibArchive.swift#L35">Show on GitHub</a>
</div>
</section>
</div>
+2 -2
View File
@@ -186,7 +186,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/Protocols.swift#L12-L17">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Protocols.swift#L20-L25">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/Protocols.swift#L20-L25">Show on GitHub</a>
</div>
</section>
</div>
+1 -1
View File
@@ -192,7 +192,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/Protocols.swift#L15">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/Protocols.swift#L15">Show on GitHub</a>
</div>
</section>
</div>
+1 -1
View File
@@ -192,7 +192,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/Protocols.swift#L23">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/Protocols.swift#L23">Show on GitHub</a>
</div>
</section>
</div>
+3 -3
View File
@@ -186,7 +186,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L43-L179">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L43-L179">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.3.0/Sources/ZipContainer.swift#L51-L74">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L39-L122">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZlibArchive.swift#L39-L122">Show on GitHub</a>
</div>
</section>
</div>
+8 -8
View File
@@ -193,7 +193,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L54-L57">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L60-L71">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L74">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L74">Show on GitHub</a>
</div>
</section>
</div>
@@ -295,7 +295,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L77">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L77">Show on GitHub</a>
</div>
</section>
</div>
@@ -325,7 +325,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L79">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L79">Show on GitHub</a>
</div>
</section>
</div>
@@ -355,7 +355,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L81">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L81">Show on GitHub</a>
</div>
</section>
</div>
@@ -385,7 +385,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L83">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L83">Show on GitHub</a>
</div>
</section>
</div>
@@ -444,7 +444,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.3.0/Sources/GzipArchive.swift#L96-L99">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L96-L99">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.3.0/Sources/GzipArchive.swift#L56">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L56">Show on GitHub</a>
</div>
</section>
</div>
+5 -5
View File
@@ -192,7 +192,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L62">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L64">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L66">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L68">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L70">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L70">Show on GitHub</a>
</div>
</section>
</div>
+3 -3
View File
@@ -192,7 +192,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/ZipContainer.swift#L56-L58">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L61-L63">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L66-L68">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZipContainer.swift#L66-L68">Show on GitHub</a>
</div>
</section>
</div>
+6 -6
View File
@@ -193,7 +193,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/ZlibArchive.swift#L42-L45">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L48-L57">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L60">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L62">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L64">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L76-L79">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L50">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L52">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L54">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L56">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L44">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZlibArchive.swift#L44">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.3.0/Sources/LZMA2.swift#L38-L106">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L182-L268">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L182-L268">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.3.0/Sources/ZipContainer.swift#L77-L236">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L44-L90">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L125-L157">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZlibArchive.swift#L125-L189">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.3.0/Sources/Deflate.swift#L32-L518">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/Deflate.swift#L32-L518">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.3.0/Sources/BZip2.swift#L47-L277">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L58-L346">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L61-L97">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Deflate.swift#L79-L83">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/Deflate.swift#L79-L83">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.3.0/Sources/Deflate.swift#L271-L327">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/Deflate.swift#L271-L327">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.3.0/Sources/GzipArchive.swift#L200-L221">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L200-L221">Show on GitHub</a>
</div>
</section>
</div>
@@ -306,7 +306,7 @@ It will be also specified that the compressor used slowest DEFLATE algorithm.</p
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L239-L266">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L239-L266">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.3.0/Sources/LZMA.swift#L58-L63">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA2.swift#L52-L59">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L76-L143">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L82">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L103-L132">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L145-L204">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L227-L234">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZipContainer.swift#L227-L234">Show on GitHub</a>
</div>
</section>
</div>
@@ -234,7 +234,77 @@ 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.3.0/Sources/ZlibArchive.swift#L143-L155">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZlibArchive.swift#L143-L155">Show on GitHub</a>
</div>
</section>
</div>
</li>
<li class="item">
<div>
<code>
<a name="/s:ZFC13SWCompression11ZlibArchive7archiveFzT4dataV10Foundation4Data_S2_"></a>
<a name="//apple_ref/swift/Method/archive(data:)" class="dashAnchor"></a>
<a class="token" href="#/s:ZFC13SWCompression11ZlibArchive7archiveFzT4dataV10Foundation4Data_S2_">archive(data:)</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Archives <code>data</code> into Zlib archive. Data will be also compressed with DEFLTATE algorithm.
It will be specified in archive&rsquo;s header that the compressor used slowest DEFLATE algorithm.</p>
<p>If during compression something goes wrong <code><a href="../Enums/DeflateError.html">DeflateError</a></code> will be thrown.</p>
<div class="aside aside-note">
<p class="aside-title">Note</p>
<p>This function is specification compliant.</p>
</div>
<div class="aside aside-throws">
<p class="aside-title">Throws</p>
<p><code><a href="../Enums/DeflateError.html">DeflateError</a></code> if an error was encountered during compression.</p>
</div>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight"><code><span class="kd">public</span> <span class="kd">static</span> <span class="kd">func</span> <span class="nf">archive</span><span class="p">(</span><span class="nv">data</span><span class="p">:</span> <span class="kt">Data</span><span class="p">)</span> <span class="k">throws</span> <span class="o">-&gt;</span> <span class="kt">Data</span></code></pre>
</div>
</div>
<div>
<h4>Parameters</h4>
<table class="graybox">
<tbody>
<tr>
<td>
<code>
<em>data</em>
</code>
</td>
<td>
<div>
<p>Data to compress and archive.</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div>
<h4>Return Value</h4>
<p>Data object with resulting archive.</p>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZlibArchive.swift#L171-L187">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.3.0/Sources/LZMA2.swift#L21-L35">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L24-L40">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L27-L48">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L26-L41">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L22-L36">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Deflate.swift#L20-L29">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L25-L44">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L28-L55">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L27">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L29">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L31">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L33">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L35">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L37">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L39">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L41">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/BZip2.swift#L43">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Deflate.swift#L22">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Deflate.swift#L24">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Deflate.swift#L26">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Deflate.swift#L28">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L26">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L28">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L30">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L32">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L37">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L39">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA2.swift#L23">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA2.swift#L25">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA2.swift#L27">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA2.swift#L29">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA2.swift#L34">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L28">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L30">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L32">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L34">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L36">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L38">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/LZMA.swift#L40">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L30">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L32">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L34">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L36">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L38">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L40">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L45">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L50">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L52">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/XZArchive.swift#L54">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/XZArchive.swift#L54">Show on GitHub</a>
</div>
</section>
</div>
@@ -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.3.0/Sources/ZipContainer.swift#L29">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L31">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L33">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L35">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L37">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L39">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L41">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L43">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L45">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L47">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L24">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L26">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L28">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L30">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L35">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Protocols.swift#L12-L17">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Protocols.swift#L20-L25">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Protocols.swift#L15">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/Protocols.swift#L23">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L43-L179">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L43-L179">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.3.0/Sources/ZipContainer.swift#L51-L74">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L39-L122">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L54-L57">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L60-L71">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L74">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L74">Show on GitHub</a>
</div>
</section>
</div>
@@ -295,7 +295,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L77">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L77">Show on GitHub</a>
</div>
</section>
</div>
@@ -325,7 +325,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L79">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L79">Show on GitHub</a>
</div>
</section>
</div>
@@ -355,7 +355,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L81">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L81">Show on GitHub</a>
</div>
</section>
</div>
@@ -385,7 +385,7 @@
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/tsolomko/SWCompression/tree/v2.3.0/Sources/GzipArchive.swift#L83">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L83">Show on GitHub</a>
</div>
</section>
</div>
@@ -444,7 +444,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.3.0/Sources/GzipArchive.swift#L96-L99">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/GzipArchive.swift#L96-L99">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.3.0/Sources/GzipArchive.swift#L56">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L62">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L64">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L66">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L68">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/GzipArchive.swift#L70">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L56-L58">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L61-L63">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZipContainer.swift#L66-L68">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L42-L45">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L48-L57">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L60">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L62">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L64">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L76-L79">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L50">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L52">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L54">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L56">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/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.3.0/Sources/ZlibArchive.swift#L44">Show on GitHub</a>
<a href="https://github.com/tsolomko/SWCompression/tree/v2.4.0/Sources/ZlibArchive.swift#L44">Show on GitHub</a>
</div>
</section>
</div>
File diff suppressed because one or more lines are too long
Binary file not shown.
+1 -1
View File
File diff suppressed because one or more lines are too long