com.happy3w.math.section.IntegerDiscretizeCalculator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of math Show documentation
Show all versions of math Show documentation
Some kits for common use
package com.happy3w.math.section;
public class IntegerDiscretizeCalculator implements DiscretizeCalculator {
@Override
public Integer plus(Integer value, long delta) {
if (value == null) {
return null;
}
return value + (int) delta;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy