forked from zhemao/glisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typeutils.go
162 lines (142 loc) · 2.2 KB
/
typeutils.go
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package glisp
func IsArray(expr Sexp) bool {
switch expr.(type) {
case SexpArray:
return true
}
return false
}
func IsList(expr Sexp) bool {
if expr == SexpNull {
return true
}
switch list := expr.(type) {
case *SexpPair:
return IsList(list.tail)
}
return false
}
func IsFloat(expr Sexp) bool {
switch expr.(type) {
case SexpFloat:
return true
}
return false
}
func IsInt(expr Sexp) bool {
switch expr.(type) {
case SexpInt:
return true
}
return false
}
func IsString(expr Sexp) bool {
switch expr.(type) {
case SexpStr:
return true
}
return false
}
func IsChar(expr Sexp) bool {
switch expr.(type) {
case SexpChar:
return true
}
return false
}
func IsNumber(expr Sexp) bool {
switch expr.(type) {
case SexpFloat:
return true
case SexpInt:
return true
case SexpChar:
return true
}
return false
}
func IsSymbol(expr Sexp) bool {
switch expr.(type) {
case SexpSymbol:
return true
}
return false
}
func IsBool(expr Sexp) bool {
switch expr.(type) {
case SexpBool:
return true
}
return false
}
func IsHash(expr Sexp) bool {
switch expr.(type) {
case *SexpHash:
return true
}
return false
}
func IsBytes(expr Sexp) bool {
switch expr.(type) {
case SexpBytes:
return true
}
return false
}
func IsFunction(expr Sexp) bool {
switch expr.(type) {
case *SexpFunction:
return true
}
return false
}
func IsZero(expr Sexp) bool {
switch e := expr.(type) {
case SexpInt:
return e.IsZero()
case SexpChar:
return int(e) == 0
case SexpFloat:
return e.Cmp(NewSexpFloat(0)) == 0
}
if isZerable(expr) {
return expr.(Zerable).IsZero()
}
return false
}
func IsEmpty(expr Sexp) bool {
if expr == SexpNull {
return true
}
switch e := expr.(type) {
case SexpArray:
return len(e) == 0
case *SexpHash:
return HashIsEmpty(e)
case SexpStr:
return len(e) == 0
case SexpBytes:
return len(e.bytes) == 0
}
return false
}
func isComparable(v Sexp) bool {
_, ok := v.(Comparable)
return ok
}
func IsTruthy(expr Sexp) bool {
switch e := expr.(type) {
case SexpBool:
return bool(e)
case SexpSentinel:
return e != SexpNull
}
return true
}
type Zerable interface {
IsZero() bool
}
func isZerable(v Sexp) bool {
_, ok := v.(Zerable)
return ok
}