Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
スキームでベクトルをリストに変換する方法は?ベクトルに関する手順はほとんどありません。
'#(1 2)
リストに車やcdrのようなものがありますか?ありがとう
もしかして、これのことですか?
(apply string-append (map number->string (vector->list '#(1 2)))) => "12"
アップデート
おっと、質問を変更しました。それからそれはずっと簡単でした:
(vector->list '#(1 2)) => '(1 2)