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.
您如何在方案中创建向量向量,以及如何更改某个事件的输入?
我知道 SRFI25 的存在,它允许您这样做,但我有兴趣看到实现以及结果。
这将创建一个不可变向量:
'#(#(1 2 3) #(4 5 6))
这将创建一个具有相同结构的可变向量:
(vector (vector 1 2 3) (vector 4 5 6))