Category talk:Wren-seq: Difference between revisions

→‎Source code: Added indexOf method to FrozenList class.
(→‎Source code: Added Lst.groupBy method.)
(→‎Source code: Added indexOf method to FrozenList class.)
Line 386:
// the frozen list where -1 is the last element.
[index] { cloned_(_a[index]) }
 
// Returns the index of 'value' in the current instance or -1 if 'value' is not found.
indexOf(value) { _a.indexOf(value) }
 
// Iterator protocol methods.
9,479

edits