diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-06-19 16:34:13 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-06-19 16:34:13 +0000 |
commit | 0d697a5d3edb1551353f6fad0a4c98b8d803b106 (patch) | |
tree | ad844711c496e9d07f20a5a9926be68ce2558267 /src/cli/runtime/IArray.cs | |
parent | 89fc0caa43811c7dfcb47a29aa59e78d295e6a1c (diff) |
added Tuple, indexing
Diffstat (limited to 'src/cli/runtime/IArray.cs')
-rw-r--r-- | src/cli/runtime/IArray.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/cli/runtime/IArray.cs b/src/cli/runtime/IArray.cs new file mode 100644 index 00000000..b5bcb4b9 --- /dev/null +++ b/src/cli/runtime/IArray.cs @@ -0,0 +1,24 @@ +/**
+ * Copyright (c) Rich Hickey. All rights reserved.
+ * The use and distribution terms for this software are covered by the
+ * Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
+ * which can be found in the file CPL.TXT at the root of this distribution.
+ * By using this software in any fashion, you are agreeing to be bound by
+ * the terms of this license.
+ * You must not remove this notice, or any other, from this software.
+ */
+
+using System;
+ +namespace clojure.lang
+{ +
+public interface IArray : ISequential {
+int length();
+
+Object get(int i);
+
+IArray set(int i,Object val);
+}
+
+}
|