Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Editorial: Update group() and groupToMap() clause IDs to match new names #40

Merged
merged 1 commit into from
Jun 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions spec.emu
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ location: https://tc39.es/proposal-array-grouping/
<h1>Properties of the Array Prototype Object (<a href="https://tc39.es/ecma262/#sec-properties-of-the-array-prototype-object">22.1.3</a>)</h1>

<ins class="block">
<emu-clause id="sec-array.prototype.groupby">
<emu-clause id="sec-array.prototype.group">
<h1>Array.prototype.group ( _callbackfn_ [ , _thisArg_ ] )</h1>
<emu-note>
<p>_callbackfn_ should be a function that accepts three arguments. `group` calls _callbackfn_ once for each element in the array, in ascending order, and constructs a new object of arrays. Each value returned by _callbackfn_ is coerced to a property key, and the associated element is included in the array in the constructed object according to this property key.</p>
Expand Down Expand Up @@ -58,7 +58,7 @@ location: https://tc39.es/proposal-array-grouping/
</ins>

<ins class="block">
<emu-clause id="sec-array.prototype.groupbymap">
<emu-clause id="sec-array.prototype.grouptomap">
<h1>Array.prototype.groupToMap ( _callbackfn_ [ , _thisArg_ ] )</h1>
<emu-note>
<p>_callbackfn_ should be a function that accepts three arguments. `groupToMap` calls _callbackfn_ once for each element in the array, in ascending order, and constructs a new Map of arrays. Each value returned by _callbackfn_ is used as a key in the Map, and the associated element is included in the array in the constructed Map according to this key.</p>
Expand Down