summaryrefslogtreecommitdiff
path: root/src/cli/runtime/Obj.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-06-12 15:01:43 +0000
committerRich Hickey <richhickey@gmail.com>2006-06-12 15:01:43 +0000
commita00179b2fb6cc09f87efbe8100fb17a7dd34a920 (patch)
tree1a8184360c077c9090a2e3d079acd9b6b5ac5bf8 /src/cli/runtime/Obj.cs
parentf127034f649276cb1bcde4fea50e6be4637dd5d0 (diff)
renamed get,put etc to getAttr...
Diffstat (limited to 'src/cli/runtime/Obj.cs')
-rw-r--r--src/cli/runtime/Obj.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cli/runtime/Obj.cs b/src/cli/runtime/Obj.cs
index 32684a6b..9f201cd7 100644
--- a/src/cli/runtime/Obj.cs
+++ b/src/cli/runtime/Obj.cs
@@ -19,18 +19,18 @@ public class Obj : IObj
{
volatile IPersistentMap _attrs = PersistentArrayIdentityMap.EMPTY;
-public Object put( Object key, Object val)
+public Object putAttr( Object key, Object val)
{
_attrs = _attrs.put(key, val);
return val;
}
-public Object get( Object key)
+public Object getAttr( Object key)
{
return _attrs.get(key);
}
-public bool has( Object key){
+public bool hasAttr( Object key){
return _attrs.contains(key);
}
@@ -39,7 +39,7 @@ public IPersistentMap attrs() {
return _attrs;
}
-public void remove(Object key) {
+public void removeAttr(Object key) {
_attrs = _attrs.remove(key);
}