core: move nfirst to the Clojure overlay

Same leaf-fn migration as ffirst/fnext/nnext. Full suite green, battery 3913.
This commit is contained in:
Yogthos 2026-06-06 11:49:09 -04:00
parent 30a308f3ef
commit c8810ee4aa
3 changed files with 3 additions and 3 deletions

View file

@ -8,5 +8,6 @@
;; already interned by init-core! (and on other overlay fns defined above it).
(defn ffirst [coll] (first (first coll)))
(defn nfirst [coll] (next (first coll)))
(defn fnext [coll] (first (next coll)))
(defn nnext [coll] (next (next coll)))