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

geotrellis.logic.AsList.scala Maven / Gradle / Ivy

The newest version!
package geotrellis.logic

import geotrellis._

/**
 * Return the result of the input operation as a List.
 */
case class AsList[A](x: Op[A]) extends Op1(x)({
    x => Result(List(x))
})




© 2015 - 2024 Weber Informatics LLC | Privacy Policy