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

com.happy3w.math.section.IntegerDiscretizeCalculator Maven / Gradle / Ivy

There is a newer version: 1.0.13
Show newest version
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