
htsjdk.samtools.cram.digest.IntegerSumCombine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htsjdk Show documentation
Show all versions of htsjdk Show documentation
A Java API for high-throughput sequencing data (HTS) formats
package htsjdk.samtools.cram.digest;
final class IntegerSumCombine implements Combine {
@Override
public Integer combine(final Integer state, final Integer update) {
return state + update;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy