summaryrefslogtreecommitdiff
path: root/src/cli/runtime/IArray.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-08-05 15:06:30 +0000
committerRich Hickey <richhickey@gmail.com>2006-08-05 15:06:30 +0000
commitcfbe0fe8a1adaf7b16f37d92545c89230256221d (patch)
tree03e34f1e6cf73f09b902b3444bd068e282f0a86b /src/cli/runtime/IArray.cs
parenta8ba1dbdec6976596e005b7ffe2d06355280a10f (diff)
made arrays associative, added MapEntry
Diffstat (limited to 'src/cli/runtime/IArray.cs')
-rw-r--r--src/cli/runtime/IArray.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/IArray.cs b/src/cli/runtime/IArray.cs
index 7171740b..736d1679 100644
--- a/src/cli/runtime/IArray.cs
+++ b/src/cli/runtime/IArray.cs
@@ -13,7 +13,7 @@ using System;
namespace clojure.lang
{
-public interface IArray : IPersistentCollection {
+public interface IArray : IPersistentCollection, Associative {
int length();
Object nth(int i);