blob: 5e840b2e2fedc9f00e6a0a7ad5d4d07e25d84ef0 (
plain)
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
53
54
55
56
57
58
59
|
namespace Eva {
public class Int : Object, Term, Numeric {
public long value {get; construct;}
public int int_value {
get {
return (int)value;
}
}
public uint uint_value {
get {
return (uint)value;
}
}
public long long_value {
get {
return value;
}
}
public ulong ulong_value {
get {
return value;
}
}
public double double_value {
get {
return value;
}
}
public Int(long v) {
Object(value: v);
}
public string to_string() {
return value.to_string();
}
protected bool do_match(Term o, Gee.Map<string, Term> vars, Gee.Map<string, string> aliases) {
if(o is Var) {
return o.do_match(this, vars, aliases);
}
if(o is Int) {
return value == (o as Int).value;
}
else if(o is UInt) {
return value == (o as UInt).value;
}
else {
return false;
}
}
internal void encode(Buffer buffer) {
buffer.buffer.encode_long(value);
}
}
}
|