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

com.github.tsingjyujing.geo.basic.operations.Productable.scala Maven / Gradle / Ivy

package com.github.tsingjyujing.geo.basic.operations

/**
  * Define a monoid which has product operation
  *
  * @author [email protected]
  * @tparam T Type of self extends this
  */
trait Productable[T <: Productable[T]] {
    /**
      * Product
      *
      * @param v value
      * @return
      */
    def *(v: T): T
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy