Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XPathOperator.cs
Go to the documentation of this file.
2
3internal enum XPathOperator
4{
5 Unknown = 0,
6 Or = 1,
7 And = 2,
8 Eq = 3,
9 Ne = 4,
10 Lt = 5,
11 Le = 6,
12 Gt = 7,
13 Ge = 8,
14 Plus = 9,
15 Minus = 10,
16 Multiply = 11,
17 Divide = 12,
18 Modulo = 13,
19 UnaryMinus = 14,
20 Union = 15,
22 UnaryPlus = 16,
23 Idiv = 17,
24 Is = 18,
25 After = 19,
26 Before = 20,
27 Range = 21,
28 Except = 22,
29 Intersect = 23,
30 ValEq = 24,
31 ValNe = 25,
32 ValLt = 26,
33 ValLe = 27,
34 ValGt = 28,
35 ValGe = 29
36}