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

org.matheclipse.core.form.mathml.IConverter Maven / Gradle / Ivy

package org.matheclipse.core.form.mathml;

import org.matheclipse.core.interfaces.IAST;

/** 
 * General conversion interface
 */
public interface IConverter {
  /**
   * Converts a given function into the corresponding MathML output
   * 
   *@param  buffer    StringBuffer for MathML output
   *@param  function  the math function which should be converted to MathML
   */
  public boolean convert(StringBuffer buffer, IAST function, int precedence);
}
 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy