- Timestamp:
- 05/26/15 20:23:19 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/classes/collectionobj.cpp
r387 r392 45 45 {"Dictionary",1,9,"Dictionary","Dictionary associates stored values with string keys " 46 46 "(\"key\" is the first argument in get/set/remove functions). Integer \"key\" can be " 47 "used to enumerate all elements (note that the sequence of elements is not preserved).\n"47 "used to enumerate all elements (note that while iterating, the elements are returned in no particular order).\n" 48 48 "Examples:\nvar d1=Dictionary.new(); d1.set(\"name\",\"John\"); d1.set(\"age\",44);\n" 49 49 "var d2=Dictionary.new(); d2[\"name\"]=\"John\"; d2[\"age\"]=44; //shorthand notation equivalent to the line above\n"
Note: See TracChangeset
for help on using the changeset viewer.