;; Note for these examples: as the authoritative documentation speaks only about
;; map (as first parameter), passing anything else (e.g. a vector, like below)
;; uses an undocumented behavior, which can change anytime and so is unreliable and
;; should be avoided.
user=> (find [:a :b :c :d] 2)
[2 :c]
user=> (find [:a :b :c :d] 5)
nil
user=> (find [1 2 3] 4294967296)
[4294967296 1]