Source of Function.java


  1: interface Function {
  2:    double apply(double x);
  3: }