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

geotrellis.util.GetComponent.scala Maven / Gradle / Ivy

Go to download

GeoTrellis is an open source geographic data processing engine for high performance applications.

There is a newer version: 0.10.1
Show newest version
package geotrellis.util

trait GetComponent[T, C] extends Serializable {
  def get: T => C
}

object GetComponent {
  def apply[T, C](_get: T => C): GetComponent[T, C] =
    new GetComponent[T, C] {
      val get = _get
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy