com.github.tsingjyujing.geo.basic.operations.IValue.scala Maven / Gradle / Ivy
package com.github.tsingjyujing.geo.basic.operations
/**
* to pack a value with some type
* you can make a collection with type _<:IValue[T] and getValue as T foreach
*
* @author [email protected]
* @tparam T value type
*/
trait IValue[+T] {
/**
* Get value
*
* @return
*/
def getValue: T
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy