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.
この質問は少しばかげているかもしれませんが、私には理解できません。文字列のリストがあるとします
(setq foo '("hello" "world"))
そして今、それらをフラットにして、次のような個別の文字列を取得する必要があります
"hello" "world"
どうすれば作れますか?ここで、リストの数は事前に不明です。
引数のリストを関数に渡すには、次のように使用できますapply。
apply
('insert'("hello" "world") を適用)