From 23f6486bf7d375dedfd37a18ddf76b1b0ab72c26 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Fri, 29 Sep 2006 18:40:41 +0000 Subject: [PATCH] Added clarifying comments. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4389 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/Map.as | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/as/com/threerings/util/Map.as b/src/as/com/threerings/util/Map.as index 3d24f2e90..db36d83cc 100644 --- a/src/as/com/threerings/util/Map.as +++ b/src/as/com/threerings/util/Map.as @@ -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; }