Compression.Zstandard

Updated on

Compression.Zstandard (5) is an enumeration that specifies the type of compression. It is a member of the Compression.Type and specifies that the compressed data is in the ‘Zstandard’ format.

Examples

// Compresses a binary file in the ZStandard format.
= Binary.Compress( #binary( {1, 22, 3, 44} ), Compression.ZStandard )
= Binary.Compress( #binary( {1, 22, 3, 44} ), 5 )

// Decompresses a binary file in the ZStandard format.
= Binary.Decompress( #binary( {1, 22, 3, 44} ), Compression.ZStandard )
= Binary.Decompress( #binary( {1, 22, 3, 44} ), 5 )

Other related enumerations are:

Applies to

Here’s a list of functions that work with Compression.Type:

Contribute » | Contributors: Rick de Groot

2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy