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

geotrellis.Literal.scala Maven / Gradle / Ivy

The newest version!
package geotrellis

import geotrellis.process._

/**
 * Return the literal value specified.
 */
case class Literal[+A](val value:A) extends Op[A] {
  val nextSteps:Steps = { case _ => Result(value) }
  def _run() = Result(value)
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy