gendx/lzma-rs

How to set dictSize on lzma2_decompress

オープン

#12 opened on 2019/10/24

 (7 件のコメント) (0 件のリアクション) (0 人の担当者)Rust (37 件のフォーク)auto 404
enhancementhelp wanted

Repository metrics

Stars
 (151 個のスター)
PR merge metrics
 (30d に merged PR はありません)

説明

In https://mvnrepository.com/artifact/com.github.veithen.cosmos.bootstrap/org.tukaani.xz I see

package org.tukaani.xz;

public class LZMA2InputStream extends InputStream {
   
   ...
    public LZMA2InputStream(InputStream in, int dictSize) {
        this(in, dictSize, (byte[])null);
    }

dictSize is a param to construct LZMA2InputStream

コントリビューターガイド