From 9213607263509ebc766e7bcf082784ec8ae19bfd Mon Sep 17 00:00:00 2001 From: Rich Hickey Date: Sat, 5 Aug 2006 16:59:24 +0000 Subject: derived Associative from IPersistentCollection --- src/cli/runtime/Associative.cs | 2 +- src/cli/runtime/IPersistentMap.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cli/runtime') diff --git a/src/cli/runtime/Associative.cs b/src/cli/runtime/Associative.cs index 2711e993..57b4cd56 100644 --- a/src/cli/runtime/Associative.cs +++ b/src/cli/runtime/Associative.cs @@ -11,7 +11,7 @@ using System; namespace clojure.lang { - public interface Associative + public interface Associative : IPersistentCollection { bool contains(object key); IMapEntry find(object key); 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); -- cgit v1.2.3-70-g09d2