geotrellis.rest.op.string.Concat.scala Maven / Gradle / Ivy
The newest version!
package geotrellis.rest.op.string
import geotrellis._
/**
* Concatenate strings.
*/
case class Concat(strings:Op[String]*) extends Op1(logic.Collect(strings)) (strings => Result(strings.mkString("")))