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

encrywm.backend.env.ESBuiltInFunc.scala Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package encrywm.backend.env

import encrywm.backend.env.ESBuiltInFunc.EvalResult
import encrywm.backend.executor.error.ExecutionError
import encrywm.lib.Types.ESType

case class ESBuiltInFunc(name: String,
                         args: IndexedSeq[(String, ESType)],
                         body: (Seq[(String, ESValue)]) => EvalResult) extends ESEnvComponent

object ESBuiltInFunc {

  val typeId: Byte = 3.toByte

  type EvalResult = Either[ExecutionError, Any]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy