From 8800e169cf12df893fdd89c8e93edb36f8e5388e Mon Sep 17 00:00:00 2001 From: Rich Hickey Date: Tue, 23 May 2006 18:12:54 +0000 Subject: derived Keyword from Symbol, IFn --- src/cli/runtime/AMap.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/cli/runtime/AMap.cs') diff --git a/src/cli/runtime/AMap.cs b/src/cli/runtime/AMap.cs index 9db0a525..a34e1560 100644 --- a/src/cli/runtime/AMap.cs +++ b/src/cli/runtime/AMap.cs @@ -22,15 +22,15 @@ public class AMap HybridDictionary attrs; public static int INITIAL_SIZE = 7; -public Object put(Indexer key, Object val) +public Object put(Keyword key, Object val) { if(attrs == null) attrs = new HybridDictionary(INITIAL_SIZE); attrs[key] = val; return val; - } - -public Object get(Indexer key) + } + +public Object get(Keyword key) { if(attrs == null) return null; -- cgit v1.2.3-70-g09d2