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

dk.bayes.math.numericops.NumericOps.scala Maven / Gradle / Ivy

The newest version!
package dk.bayes.math.numericops

trait NumericOps[THIS] {

  this: THIS =>

  def *(that: THIS)(implicit multOp: multOp[THIS]): THIS = multOp(this, that)

  def /(that: THIS)(implicit divideOp: divideOp[THIS]): THIS = divideOp(this, that)

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy