CompressionLevel
public enum CompressionLevel : Int
Levels of compression which can be used to create Zlib archive.
-
Fastest algorithm.
Declaration
Swift
case fastestAlgorithm = 0 -
Fast algorithm.
Declaration
Swift
case fastAlgorithm = 1 -
Default algorithm.
Declaration
Swift
case defaultAlgorithm = 2 -
Slowest algorithm but with maximum compression.
Declaration
Swift
case slowAlgorithm = 3
View on GitHub
CompressionLevel Enumeration Reference