summaryrefslogtreecommitdiff
path: root/src/cli/runtime/AMap.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-05-31 17:08:06 +0000
committerRich Hickey <richhickey@gmail.com>2006-05-31 17:08:06 +0000
commitaaf41d731cc4baa7693cae8d09814a00cd0e6255 (patch)
tree421312d2c0bae0e43432535b2d0f1cda2b5b1e39 /src/cli/runtime/AMap.cs
parent57162d9fc2d5f78518b20aa49d4843d9de2c1b3e (diff)
renamed AMap to Obj
Diffstat (limited to 'src/cli/runtime/AMap.cs')
-rw-r--r--src/cli/runtime/AMap.cs40
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