user=> (second '(:alpha :bravo :charlie)) :bravo user=> (second [1 2 3]) 2 user=> (second {:a 1 :b 2 :c 3}) [:b 2] user=> (second #{1 2 3}) 2
Returns the first item in the collection. Calls seq on its argume
Returns the value at the index. get returns nil if index out of bou
(def ^{:doc "Same as (first (next x))" :arglists '([x]) :added "1.0" :static true} second (fn ^:static second [x] (first (next x))))
Comments top
No comments for second. Log in to add a comment.