summaryrefslogtreecommitdiff
path: root/src/cli/runtime/IPersistentMap.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-08-05 16:59:24 +0000
committerRich Hickey <richhickey@gmail.com>2006-08-05 16:59:24 +0000
commit9213607263509ebc766e7bcf082784ec8ae19bfd (patch)
treeb9be4ed2fbf4d4f57b89280526b48bf9e781ffb3 /src/cli/runtime/IPersistentMap.cs
parent279dd21d4b919496c8fb54c3135f2b82cc36f5c2 (diff)
derived Associative from IPersistentCollection
Diffstat (limited to 'src/cli/runtime/IPersistentMap.cs')
-rw-r--r--src/cli/runtime/IPersistentMap.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/IPersistentMap.cs b/src/cli/runtime/IPersistentMap.cs
index 055746ce..b1f9ef94 100644
--- a/src/cli/runtime/IPersistentMap.cs
+++ b/src/cli/runtime/IPersistentMap.cs
@@ -14,7 +14,7 @@ using System.Collections;
namespace clojure.lang
{
-public interface IPersistentMap : Associative, IEnumerable, IPersistentCollection{
+public interface IPersistentMap : Associative, IEnumerable{
IPersistentMap assocEx(Object key, Object val);