diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-08-05 15:31:36 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-08-05 15:31:36 +0000 |
commit | da11eb9d0dd587e532470965b3c655b741d1fa5c (patch) | |
tree | 12ca5ed1b29b2f29caebc3cb3fba09d72af23bd8 /src/cli/runtime/PersistentTreeMap.cs | |
parent | db58898d1d44d8025208bb5f0b2c4a493a5cdb43 (diff) |
changed return type of assoc to Associative
Diffstat (limited to 'src/cli/runtime/PersistentTreeMap.cs')
-rw-r--r-- | src/cli/runtime/PersistentTreeMap.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/PersistentTreeMap.cs b/src/cli/runtime/PersistentTreeMap.cs index f82e59b2..b87e3754 100644 --- a/src/cli/runtime/PersistentTreeMap.cs +++ b/src/cli/runtime/PersistentTreeMap.cs @@ -69,7 +69,7 @@ public IPersistentMap assocEx(Object key,Object val){ return new PersistentTreeMap(comp, t.blacken(), _count + 1, _meta); } -public IPersistentMap assoc(Object key, Object val){ +public Associative assoc(Object key, Object val){ Box found = new Box(null); Node t = add(tree, key, val, found); if(t == null) //null == already contains key |