-
-
Notifications
You must be signed in to change notification settings - Fork 3
zlib.Inflater.Constructor
Andrew Lambert edited this page Nov 26, 2022
·
11 revisions
Sub Constructor(Encoding As Integer = zlib.DEFLATE_ENCODING)
Sub Constructor(CopyStream As zlib.Inflater)
Name | Type | Comment |
---|---|---|
Encoding | Integer | Optional. The type of compression. |
Name | Type | Comment |
---|---|---|
CopyStream | zlib.Inflater | An instance of Inflater to duplicate |
Constructs a new Inflater, or duplicates an existing Inflater. Duplication can be useful when randomly accessing a long stream. The first pass through the stream can periodically record a duplicate of the inflate state, allowing restarting inflate at those points when randomly accessing the stream.
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.