diff options
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);
} |