(doc count)
-------------------------
clojure.core/count
([coll])
Returns the number of items in the collection. (count nil) returns
0. Also works on strings, arrays, and Java Collections and Maps
数量是否保证在向量上是恒定时间?
如果没有,无论如何都要在恒定时间内获得矢量的大小?
我实际上想得到一个向量的列表元素,我可以在O(1)中用nth做,假设我知道向量大小。
我忘了提这个。我需要这个来处理瞬态向量。
答案 0 :(得分:9)
是的,向量上的计数总是很快。但是你可以调用peek
来获取它的最后一个元素。