Skip to content

Commit 223c8d2

Browse files
committed
update documentations
1 parent 8332367 commit 223c8d2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/data_structures/queue/list.clj

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
(drop-last 1 queue)))
1616

1717
(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"
1820
[queue]
1921
(when-not (empty? queue)
2022
(nth queue (dec (count queue)))))

0 commit comments

Comments
 (0)