Closed
Description
This issue was originally filed by @seaneagan
Map's getKeys() and getValues() return Collections which are backed by the Map, as in Java. This means none of the Map's keys / values are actually copied. Thus, these methods are O(1). Thus, they should satisfy all the criteria in the Dart style guide (http://www.dartlang.org/articles/style-guide/) for getters:
Not take any arguments.
Return a value.
Be side-effect free.
Be fast.
The obvious names for these getters are "keys" and "values".