Category talk:Wren-set: Difference between revisions

Content added Content deleted
(→‎Source code: Removed type aliases which are no longer needed.)
m (→‎Source code: Fixed syntax highlighting.)
Line 1: Line 1:
===Source code===
===Source code===


<lang ecmascript>/* Module "set.wren" */
<syntaxhighlight lang=ecmascript>/* Module "set.wren" */


/* Set represents an unordered collection of unique objects. It is implemented as a Map
/* Set represents an unordered collection of unique objects. It is implemented as a Map
Line 511: Line 511:


iteratorValue(iter) { _m.iteratorValue(iter) }
iteratorValue(iter) { _m.iteratorValue(iter) }
}</lang>
}</syntaxhighlight>