Expression

object Expression
Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

final case class Leaf[+Operand](operand: Operand) extends Expression[Operand, Nothing]
final case class Node[+Operand, +Operator](left: Expression[Operand, Operator], op: Operator, right: Expression[Operand, Operator]) extends Expression[Operand, Operator]

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror

Value members

Concrete methods

def apply[Operand](operand: Operand): Expression[Operand, Nothing]
def apply[Operand, Operator](left: Expression[Operand, Operator], op: Operator, right: Expression[Operand, Operator]): Expression[Operand, Operator]