All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbib.io.compress.xz.lz.Matches Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version

package org.xbib.io.compress.xz.lz;

public final class Matches {
    public final int[] len;
    public final int[] dist;
    public int count = 0;

    Matches(int countMax) {
        len = new int[countMax];
        dist = new int[countMax];
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy