summaryrefslogtreecommitdiff
path: root/src/cli/runtime/PersistentHashtableMap.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-08-05 17:52:25 +0000
committerRich Hickey <richhickey@gmail.com>2006-08-05 17:52:25 +0000
commit5572d24dae42bf686048a1add52437b4b3627ca0 (patch)
tree9b74398e86d184866187fdb2992dc3f69f15166e /src/cli/runtime/PersistentHashtableMap.cs
parent73f8a4754a43dfce194989457b54aceca5595979 (diff)
added IPersistentList, ASeq
Diffstat (limited to 'src/cli/runtime/PersistentHashtableMap.cs')
-rw-r--r--src/cli/runtime/PersistentHashtableMap.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cli/runtime/PersistentHashtableMap.cs b/src/cli/runtime/PersistentHashtableMap.cs
index 52dea0ad..b54166a0 100644
--- a/src/cli/runtime/PersistentHashtableMap.cs
+++ b/src/cli/runtime/PersistentHashtableMap.cs
@@ -173,7 +173,7 @@ override public ISeq seq() {
return Seq.create(array);
}
-class Seq : ISeq{
+class Seq : ASeq{
PersistentArray buckets;
int b;
ISeq e;
@@ -201,11 +201,11 @@ class Seq : ISeq{
this.e = e;
}
- public Object first() {
+ override public Object first() {
return e.first();
}
- public ISeq rest() {
+ override public ISeq rest() {
return next(buckets,b,e);
}
}