Skip to content
Snippets Groups Projects
Select Git revision
  • 8f3a4ef2ee2b5da6585b5fe78994f5b3e5c07590
  • main default protected
  • variant
3 results

PersistentToggleGroup.java

Blame
  • Forked from COUETOUX Basile / FirefighterStarter
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Operator.java 146 B
    package Formule;
    
    public interface Operator {
        String Symbol();
        double initialValue();
    
        double cumulative(double acc, double value);
    }