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

com.cogpunk.math.NumberOperator Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.cogpunk.math;

public interface NumberOperator

{ public P add(P first, P second); public P subtract(P first, P second); public P multiply(P first, P second) ; public P divide(P first, P second); public P cast(Number i); public int hashCode(); /** * @param obj The object to compare with * @return There this is an equivalent NumberOperator */ public boolean equals(Object obj); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy