Documentation ¶
Index ¶
- Variables
- func Add(x, y interface{}) interface{}
- func BitClear(x, y interface{}) interface{}
- func BitwiseAnd(x, y interface{}) interface{}
- func BitwiseOr(x, y interface{}) interface{}
- func BitwiseXor(x, y interface{}) interface{}
- func Divide(x, y interface{}) interface{}
- func Equal(x, y interface{}) bool
- func Greater(x, y interface{}) bool
- func GreaterOrEqual(x, y interface{}) bool
- func LeftShift(x, y interface{}) interface{}
- func Less(x, y interface{}) bool
- func LessOrEqual(x, y interface{}) bool
- func Multiply(x, y interface{}) interface{}
- func NewSorter(len func() int, swap func(i, j int), less func(i, j int) bool) sort.Interface
- func NotEqual(x, y interface{}) bool
- func Remainder(x, y interface{}) interface{}
- func RightShift(x, y interface{}) interface{}
- func Subtract(x, y interface{}) interface{}
- func To_complex128(x interface{}) complex128
- func To_complex64(x interface{}) complex64
- func To_float32(x interface{}) float32
- func To_float64(x interface{}) float64
- func To_int(x interface{}) int
- func To_int16(x interface{}) int16
- func To_int32(x interface{}) int32
- func To_int8(x interface{}) int8
- func To_string(x interface{}) string
- func To_uint(x interface{}) uint
- func To_uint16(x interface{}) uint16
- func To_uint64(x interface{}) uint64
- func To_uint8(x interface{}) uint8
- func To_uintptr(x interface{}) uintptr
- type Any
- type T1
- type T2
- type T3
- type T4
- type T5
- type T6
- type T7
- type T8
- type T9
Constants ¶
This section is empty.
Variables ¶
View Source
var BinaryOpTokens = map[string]token.Token{ "Equal": token.EQL, "NotEqual": token.NEQ, "Add": token.ADD, "Subtract": token.SUB, "Multiply": token.MUL, "Divide": token.QUO, "Remainder": token.REM, "BitwiseAnd": token.AND, "BitwiseOr": token.OR, "BitwiseXor": token.XOR, "BitClear": token.AND_NOT, "LeftShift": token.SHL, "RightShift": token.SHR, "Less": token.LSS, "LessOrEqual": token.LEQ, "Greater": token.GTR, "GreaterOrEqual": token.GEQ, }
BinaryOpTokens are all the binary operations
Functions ¶
func GreaterOrEqual ¶
func GreaterOrEqual(x, y interface{}) bool
func LessOrEqual ¶
func LessOrEqual(x, y interface{}) bool
func To_complex128 ¶
func To_complex128(x interface{}) complex128
To_complex128 converts anything to a complex128
func To_complex64 ¶
func To_complex64(x interface{}) complex64
To_complex64 converts anything to a complex64
Types ¶
Click to show internal directories.
Click to hide internal directories.