We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8332367 commit 223c8d2Copy full SHA for 223c8d2
src/data_structures/queue/list.clj
@@ -15,6 +15,8 @@
15
(drop-last 1 queue)))
16
17
(defn peek-queue
18
+ "this implementation is more performant than using `last` or `reverse`
19
+ they both traverse the entire collection whereas count is stored on the PersistenceList object"
20
[queue]
21
(when-not (empty? queue)
22
(nth queue (dec (count queue)))))
0 commit comments