Difference between revisions of "Indexes"
Jump to navigation
Jump to search
(Created page with "<c>indexes</c> Returns the keys of a dictionary, or the non-negative indexes for a string or list. See also hasIndex === Arguments === {| class="wikitable" |- ! Paramet...") |
|||
Line 1: | Line 1: | ||
− | <c>indexes</c> | + | <c>indexes</c> returns the keys of a dictionary, or the non-negative indexes |
for a string or list. | for a string or list. | ||
− | See also [[ | + | See also [[hashIndex]] |
=== Arguments === | === Arguments === |
Revision as of 17:32, 16 March 2020
indexes
returns the keys of a dictionary, or the non-negative indexes
for a string or list.
See also hashIndex
Arguments
Parameter Name | Default Value | Meaning |
---|---|---|
self | string, list, or map | object to geet the indexes of |
Example
Example: "foo".indexes // returns [0, 1, 2]