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

jscl.math.function.IFunction Maven / Gradle / Ivy

package jscl.math.function;

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.solovyev.common.math.MathEntity;

import java.util.List;

public interface IFunction extends MathEntity {

	@NotNull
	String getContent();

	@Nullable
	String getDescription();

	String toJava();

	@NotNull
	List getParameterNames();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy