aboutsummaryrefslogtreecommitdiff
path: root/op.go
blob: 96c30dfbd53915ce91e271f02121874447de6859 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package main

type equalityOp int

const (
	equalTo equalityOp = iota
	notEqualTo
)

type comparisonOp int

const (
	lessThan comparisonOp = iota
	lessThanOrEqualTo
	greaterThan
	greaterThanOrEqualTo
)

type shiftOp int

const (
	shiftLeft shiftOp = iota
	shiftRight
)

type addSubOp int

const (
	add addSubOp = iota
	subtract
)

type mulDivOp int

const (
	multiply mulDivOp = iota
	divide
)

type unaryOp int

const (
	unaryIdentity unaryOp = iota
	negate
	invertLogical
	invertBits
)