diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-08-05 15:18:43 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-08-05 15:18:43 +0000 |
commit | db58898d1d44d8025208bb5f0b2c4a493a5cdb43 (patch) | |
tree | cad6d19295174af8a5e43f8f8c9b222232123965 /src/cli/runtime/IArray.cs | |
parent | cfbe0fe8a1adaf7b16f37d92545c89230256221d (diff) |
renamed remove, add
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 736d1679..09e1bbe6 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, Associative {
+public interface IArray : IPersistentCollection, Associative, Sequential {
int length();
Object nth(int i);
|