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

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

There is a newer version: 2.8.9-2.11
Show newest version
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