Skip to content

Commit f35ad6c

Browse files
committed
消し忘れた段落を削除
1 parent 97d8397 commit f35ad6c

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/ch15-01-box.md

-9
Original file line numberDiff line numberDiff line change
@@ -177,15 +177,6 @@ construct cons lists made up of recursive pairs.
177177
Lisp版の連結リストです。その名前は、2つの引数から新しいペアを構築するLispの`cons`関数("construct function"の省略形です)に由来します。
178178
`cons`を、値と別のペアからなるペアに対して呼び出すことで、再帰的なペアからなるコンスリストを構築することができます。
179179

180-
<!--
181-
The cons function concept has made its way into more general functional
182-
programming jargon: “to cons *x* onto *y*” informally means to construct a new
183-
container instance by putting the element *x* at the start of this new
184-
container, followed by the container *y*.
185-
-->
186-
187-
cons関数という概念は、より一般的な関数型プログラミングの俗語にもなっています。"to cons *x* onto *y*"はコンテナ*y*の先頭に要素*x*を置くことで新しいコンテナのインスタンスを生成することを意味します。
188-
189180
<!--
190181
For example, here’s a pseudocode representation of a cons list containing the
191182
list 1, 2, 3 with each pair in parentheses:

0 commit comments

Comments
 (0)