aboutsummaryrefslogtreecommitdiff
path: root/op.go
blob: 8f67ae8cbebc7f0d37669671f09301c2ab3a58cc (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
48
49
50
51
52
// SPDX-FileCopyrightText: 2024 Himbeer <himbeer@disroot.org>
//
// SPDX-License-Identifier: GPL-3.0-or-later

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
	remainder
)

type unaryOp int

const (
	unaryIdentity unaryOp = iota
	negate
	invertLogical
	invertBits
)