﻿class System.IO.Compression.DeflateStream : Stream
	java service DeflateStream
	js service Stream
	python zlib import zlib  ///warning this is not exists in real Python

.ctor(Stream, CompressionMode, *)
	java new {*}({0}, {1}, false) 
	js Utils.deflateWrapper({0}, {1})
.ctor(Stream, bool, CompressionMode)
	java new {*}({0}, {2}, {1}) 

method static byte[] CompressZlib(byte[])
	python zlib.compress({0})
	js Utils.compressZlib({0})
method static byte[] DecompressZlib(byte[])
	python zlib.decompress({0})
	js Utils.decompressZlib({0})

method static byte[] CompressDeflate(byte[])
	python zlib.compress({0}, -15)
	js Utils.compressDeflate({0})
method static byte[] DecompressDeflate(byte[])
	python zlib.decompress({0}, -15)
	js Utils.decompressDeflate({0})
