summaryrefslogtreecommitdiff
path: root/src/cli/runtime/IArray.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-08-05 17:06:27 +0000
committerRich Hickey <richhickey@gmail.com>2006-08-05 17:06:27 +0000
commit73f8a4754a43dfce194989457b54aceca5595979 (patch)
treecfeb10df9b9da9860083e3fe36c207d611996dc9 /src/cli/runtime/IArray.cs
parent9213607263509ebc766e7bcf082784ec8ae19bfd (diff)
renamed IArray, AnArray
Diffstat (limited to 'src/cli/runtime/IArray.cs')
-rw-r--r--src/cli/runtime/IArray.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/cli/runtime/IArray.cs b/src/cli/runtime/IArray.cs
deleted file mode 100644
index 09e1bbe6..00000000
--- a/src/cli/runtime/IArray.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-/**
- * 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 : IPersistentCollection, Associative, Sequential {
-int length();
-
-Object nth(int i);
-
-IArray assocN(int i,Object val);
-}
-
-}