diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-06-12 15:01:43 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-06-12 15:01:43 +0000 |
commit | a00179b2fb6cc09f87efbe8100fb17a7dd34a920 (patch) | |
tree | 1a8184360c077c9090a2e3d079acd9b6b5ac5bf8 /src/cli/runtime/Obj.cs | |
parent | f127034f649276cb1bcde4fea50e6be4637dd5d0 (diff) |
renamed get,put etc to getAttr...
Diffstat (limited to 'src/cli/runtime/Obj.cs')
-rw-r--r-- | src/cli/runtime/Obj.cs | 8 |
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);
} |