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

htsjdk.samtools.cram.digest.IntegerSumCombine Maven / Gradle / Ivy

There is a newer version: 4.1.3
Show newest version
package htsjdk.samtools.cram.digest;

final class IntegerSumCombine implements Combine {

    @Override
    public Integer combine(final Integer state, final Integer update) {
        return state + update;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy