diff options
Diffstat (limited to 'src/cli/runtime/AMap.cs')
| -rw-r--r-- | src/cli/runtime/AMap.cs | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/cli/runtime/AMap.cs b/src/cli/runtime/AMap.cs deleted file mode 100644 index a34e1560..00000000 --- a/src/cli/runtime/AMap.cs +++ /dev/null @@ -1,40 +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. - **/ - -/* rich Mar 25, 2006 3:44:58 PM */ - -using System;
-using System.Collections.Specialized;
- -namespace org.clojure.runtime
-{ - -public class AMap
-{ - -HybridDictionary attrs; -public static int INITIAL_SIZE = 7; - -public Object put(Keyword key, Object val) - { - if(attrs == null) - attrs = new HybridDictionary(INITIAL_SIZE); - attrs[key] = val; - return val; - }
-
-public Object get(Keyword key) - { - if(attrs == null) - return null; - return attrs[key]; - } -} -}
\ No newline at end of file |
