-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathILispValue.cs
More file actions
58 lines (48 loc) · 766 Bytes
/
ILispValue.cs
File metadata and controls
58 lines (48 loc) · 766 Bytes
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
using System;
using System.Numerics;
namespace libQCLISP
{
/// <summary>
/// Interface for defining new Lisp Types (not necessarily parsable)
/// </summary>
public interface ILispValue
{
ELispType getType();
string getString();
BigInteger getInteger();
double getFloating();
bool getBoolean();
char getCharacter();
T getN<T> ();
ILispValue eval();
}
/*
public ELispType getType()
{
}
public string getString()
{
return "";
}
public BigInteger getInteger()
{
return 0;
}
public double getFloating()
{
return 0.0;
}
public bool getBoolean()
{
return true;
}
public char getCharacter()
{
return 'a';
}
public T getN<T> ()
{
throw new NotLispValueException();
}
*/
}