com.github.tsingjyujing.geo.basic.operations.Addable.scala Maven / Gradle / Ivy
package com.github.tsingjyujing.geo.basic.operations
/**
* Define a add group
*
* @author [email protected]
* @tparam T element type
*/
trait Addable[T <: Addable[T]] {
/**
* Add self to a same type value
*
* @param v
* @return
*/
def +(v: T): T
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy