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

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

Go to download

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

The newest version!
package geotrellis.util

trait SetComponent[T, C] extends Serializable {
  def set: (T, C) => T
}

object SetComponent {
  def apply[T, C](_set: (T, C) => T): SetComponent[T, C] =
    new SetComponent[T, C] {
      val set = _set
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy