Skip to content
Snippets Groups Projects
Operator.java 146 B
Newer Older
  • Learn to ignore specific revisions
  • NIRINA Andriantsoa's avatar
    NIRINA Andriantsoa committed
    package Formule;
    
    public interface Operator {
        String Symbol();
        double initialValue();
    
        double cumulative(double acc, double value);
    }