diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-08-05 15:06:30 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-08-05 15:06:30 +0000 |
commit | cfbe0fe8a1adaf7b16f37d92545c89230256221d (patch) | |
tree | 03e34f1e6cf73f09b902b3444bd068e282f0a86b /src/cli/runtime/IArray.cs | |
parent | a8ba1dbdec6976596e005b7ffe2d06355280a10f (diff) |
made arrays associative, added MapEntry
Diffstat (limited to 'src/cli/runtime/IArray.cs')
-rw-r--r-- | src/cli/runtime/IArray.cs | 2 |
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);
|