Skip to content

Commit b6f7971

Browse files
committed
Add the new need described in tc39#8
1 parent 0a2cb1b commit b6f7971

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

problem-solution-matrix.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,18 @@ based on the most current proposal.
128128
</td>
129129
</tr>
130130

131+
<tr>
132+
<td>A way to run side effects inside a functional pipeline</td>
133+
<td><code>x => { sideEffect(x); return x; }</code></td>
134+
<td>
135+
136+
- [`tap` in Ramda](https://ramdajs.com/docs/#tap)
137+
- [`tap` in lodash](https://lodash.com/docs/4.17.15#tap)
138+
- [`inspect` in Rust](https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.inspect)
139+
- [`Debug.Trace` on Hackage](https://hackage.haskell.org/package/base-4.15.0.0/docs/Debug-Trace.html)
140+
141+
</td>
142+
</tr>
143+
131144
</tbody>
132145
</table>

0 commit comments

Comments
 (0)