Result

org.finos.morphir.runtime.quick.Result
See theResult companion trait
object Result

Attributes

Companion
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
Result.type

Members list

Type members

Classlikes

case class Applied(body: RuntimeValue, curried: List[(Name, Result)], closingContext: CallStackFrame)

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class ConstructorFunction(name: FQName, arguments: List[ValueAttribs], curried: List[Result]) extends Result

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
case class ConstructorResult(name: FQName, values: List[Result]) extends Result

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
case class DefinitionFunction(body: RuntimeValue, arguments: List[(Name, ValueAttribs, Type[TypeAttribs])], curried: List[(Name, Result)], closingContext: CallStackFrame) extends Result

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
case class FieldFunction(fieldName: Name) extends Result

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
case class LambdaFunction(body: RuntimeValue, pattern: Pattern[ValueAttribs], closingContext: CallStackFrame) extends Result

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
case class ListResult(elements: List[Result]) extends Result

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
case class LocalDate(value: LocalDate) extends Result

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
case class LocalTime(value: LocalTime) extends Result

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
case class MapResult(elements: LinkedHashMap[Result, Result]) extends Result

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
case class NativeFunction(arguments: Int, curried: List[Result], function: NativeFunctionSignature) extends NativeFunctionResult

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
sealed trait NativeFunctionResult extends Result

Attributes

Supertypes
trait Result
class Object
trait Matchable
class Any
Known subtypes
case class NativeInnerFunction(arguments: Int, curried: List[Result], function: NativeFunctionSignatureAdv) extends NativeFunctionResult

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
case class NumericWithHelper[T](value: T, helper: Numeric[T], fractionalHelper: Option[Fractional[T]], integralHelper: Option[Integral[T]])

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class NumericsWithHelper[T](a: T, b: T, helper: Numeric[T], fractionalHelper: Option[Fractional[T]], integralHelper: Option[Integral[T]])

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
object Primitive

Attributes

Companion
trait
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
Primitive.type
sealed trait Primitive[T] extends Result

Attributes

Companion
object
Supertypes
trait Result
class Object
trait Matchable
class Any
Known subtypes
class Boolean
class Char
trait Numeric[T]
class BigDecimal
class Float
class Int
class String
Show all
case class Record(elements: Map[Name, Result]) extends Result

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
case class SetResult(elements: LinkedHashSet[Result]) extends Result

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
case class Tuple(elements: List[Result]) extends Result

Attributes

Companion
object
Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all
object Tuple

Attributes

Companion
class
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
Tuple.type
case class Unit() extends Result

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Result
class Object
trait Matchable
class Any
Show all

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def unwrapBoolean(arg: Result): Boolean
def unwrapDecimal(arg: Result): BigDecimal
def unwrapDouble(arg: Result): Double
def unwrapFloat(arg: Result): Double
def unwrapInt(arg: Result): Int
def unwrapList(arg: Result): List[Result]
def unwrapLong(arg: Result): Long
def unwrapMap(arg: Result): LinkedHashMap[Result, Result]
def unwrapNumeric(arg: Result): Numeric[_]
def unwrapString(arg: Result): String
def unwrapTuple(arg: Result): List[Result]