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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
|
/**
* Copyright (c) Rich Hickey. All rights reserved.
* The use and distribution terms for this software are covered by the
* Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
* which can be found in the file CPL.TXT at the root of this distribution.
* By using this software in any fashion, you are agreeing to be bound by
* the terms of this license.
* You must not remove this notice, or any other, from this software.
**/
/* rich Mar 25, 2006 4:28:27 PM */
using System;
using System.Collections;
using System.IO;
namespace clojure.lang
{
public class RT
{
public static Symbol T = Symbol.intern("t");
public static Object[] EMPTY_ARRAY = new Object[0];
static public readonly Object[] chars;
static RT(){
chars = new Object[256];
for(int i=0;i<chars.Length;i++)
chars[i] = (char)i;
}
static public Object eq(Object arg1, Object arg2) {
return (arg1 == arg2)?T:null;
}
static public Object eql(Object arg1, Object arg2) {
if(arg1 == arg2)
return T;
if(arg1 == null || arg2 == null)
return null;
if(arg1 is Num
&& arg1.GetType() == arg2.GetType()
&& arg1.Equals(arg2))
return T;
if(arg1 is Char
&& arg2 is Char
&& arg1.Equals(arg2))
return T;
return null;
}
//static public Object equal(Object arg1, Object arg2) {
// if(arg1 == null)
// return arg2 == null ? T : null;
// else if(arg2 == null)
// return null;
// return (eql(arg1,arg2) != null
// || (arg1 is Cons
// && arg2 is Cons
// && equal(((Cons)arg1).first(),((Cons)arg2).first())!=null
// && equal(((Cons)arg1).rest(),((Cons)arg2).rest())!=null))
// ?T:null;
// }
static public ISeq seq(Object coll) {
if(coll == null || coll is ISeq)
return (ISeq) coll;
else if(coll is IPersistentCollection)
return ((IPersistentCollection) coll).seq();
else if(coll is IEnumerable)
return EnumeratorSeq.create(((IEnumerable) coll).GetEnumerator());
else if(coll is Object[])
return ArraySeq.create((Object[]) coll);
else
throw new ArgumentException("Don't know how to create ISeq from arg");
}
static public Iter iter(Object coll)
{
if (coll == null || coll is Iter)
return (Iter)coll;
else if (coll is IEnumerable)
{
IEnumerator e = ((IEnumerable)coll).GetEnumerator();
if (e.MoveNext())
return new EnumeratorIter(e);
return null;
}
else
{
throw new ArgumentException("Don't know how to create Iter from arg");
}
}
static public Object box(Object x)
{
return x;
}
static public Object box(char x)
{
if (x < chars.Length)
return chars[x];
return x;
}
static public Object box(bool x)
{
return x;
}
static public Object box(byte x)
{
return x;
}
static public Object box(short x)
{
return x;
}
static public Object box(int x)
{
return x;
}
static public Object box(long x)
{
return x;
}
static public Object box(float x)
{
return x;
}
static public Object box(double x)
{
return x;
}
static public char charCast(Object x)
{
return Convert.ToChar(x);
}
static public bool booleanCast(Object x)
{
if(x is Boolean)
return (bool)x; ;
return x != null;
}
static public byte byteCast(Object x)
{
return Convert.ToByte(x);
}
static public short shortCast(Object x)
{
return Convert.ToInt16(x);
}
static public int intCast(Object x)
{
return Convert.ToInt32(x);
}
static public long longCast(Object x)
{
return Convert.ToInt64(x);
}
static public float floatCast(Object x)
{
return Convert.ToSingle(x);
}
static public double doubleCast(Object x)
{
return Convert.ToDouble(x);
}
static public Cons cons(Object x, Object y) {
return new Cons(x, seq(y));
}
static public Object first(Object x) {
return seq(x).first();
}
static public ISeq rest(Object x) {
return seq(x).rest();
}
static public Cons list()
{
return null;
}
static public Cons list(Object arg1)
{
return cons(arg1, null);
}
static public Cons list(Object arg1, Object arg2)
{
return listStar(arg1, arg2, null);
}
static public Cons list(Object arg1, Object arg2, Object arg3)
{
return listStar(arg1, arg2, arg3, null);
}
static public Cons list(Object arg1, Object arg2, Object arg3, Object arg4)
{
return listStar(arg1, arg2, arg3, arg4, null);
}
static public Cons list(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5)
{
return listStar(arg1, arg2, arg3, arg4, arg5, null);
}
static public Cons listStar(Object arg1, ISeq rest)
{
return cons(arg1, rest);
}
static public Cons listStar(Object arg1, Object arg2, ISeq rest)
{
return cons(arg1, cons(arg2, rest));
}
static public Cons listStar(Object arg1, Object arg2, Object arg3, ISeq rest)
{
return cons(arg1, cons(arg2, cons(arg3, rest)));
}
static public Cons listStar(Object arg1, Object arg2, Object arg3, Object arg4, ISeq rest)
{
return cons(arg1, cons(arg2, cons(arg3, cons(arg4, rest))));
}
static public Cons listStar(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, ISeq rest)
{
return cons(arg1, cons(arg2, cons(arg3, cons(arg4, cons(arg5, rest)))));
}
static public Cons arrayToList(Object[] a)
{
Cons ret = null;
for (int i = a.Length - 1; i >= 0; --i)
ret = cons(a[i], ret);
|