Skip to content

Commit b46ce2d

Browse files
committed
Add example map working with vectors
1 parent b249a91 commit b46ce2d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,19 @@ <h2>Comparison</h2>
103103
</td>
104104
</tr>
105105

106+
<tr>
107+
<td>
108+
<pre><code class="lisp">
109+
(map #'- #(1 2 3 4))
110+
</code></pre>
111+
</td>
112+
<td>
113+
<pre><code class="lisp">
114+
(map 'vector #'- #(1 2 3 4))
115+
</code></pre>
116+
</td>
117+
</tr>
118+
106119
<tr>
107120
<td>
108121
<pre><code class="lisp">

0 commit comments

Comments
 (0)