Added clarifying comments.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4389 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-09-29 18:40:41 +00:00
parent 48faea2ace
commit 23f6486bf7
+4
View File
@@ -34,6 +34,8 @@ public interface Map
/**
* Return all the unique keys in this Map, in Array form.
* The Array is not a 'view': it can be modified without disturbing
* the Map from whence it came.
*/
function keys () :Array;
@@ -56,6 +58,8 @@ public interface Map
/**
* Return all the values in this Map, in Array form.
* The Array is not a 'view': it can be modified without disturbing
* the Map from whence it came.
*/
function values () :Array;
}