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

org.unlaxer.tinyexpression.factory.ContextCalculator Maven / Gradle / Ivy

package org.unlaxer.tinyexpression.factory;

import java.util.function.Function;

import org.unlaxer.tinyexpression.CalculationContext;

public interface ContextCalculator extends Function{
  
  default float calculate(CalculationContext context) {
    
    return apply(context);
  }

  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy