Documentation
¶
Overview ¶
Package mito is an attempt at making CEL (the "common expression language"), but much more simply. instead of using protobufs it lets you use your own types, kind of like userdata in lua.
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
Types ¶
type OpType ¶
type OpType string
const ( OpOrModNil = "" OpExp OpType = "^" OpMul OpType = "*" OpDiv OpType = "/" OpAdd OpType = "+" OpSub OpType = "-" OpLess OpType = "<" OpLessEqual OpType = "<=" OpEqual OpType = "==" OpNotEqual OpType = "!=" OpGreater OpType = ">" OpGreaterEqual OpType = ">=" OpAnd OpType = "&&" OpOr OpType = "||" )
type Subexpression ¶
type Subexpression struct {
Expr Evaluable
}
Click to show internal directories.
Click to hide internal directories.