Changeset 392


Ignore:
Timestamp:
05/26/15 20:23:19 (9 years ago)
Author:
sz
Message:

Dictionary documentation updated.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/vm/classes/collectionobj.cpp

    r387 r392  
    4545{"Dictionary",1,9,"Dictionary","Dictionary associates stored values with string keys "
    4646 "(\"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"
    4848 "Examples:\nvar d1=Dictionary.new(); d1.set(\"name\",\"John\"); d1.set(\"age\",44);\n"
    4949 "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.