Last active
August 29, 2015 14:13
-
-
Save guipdutra/875481ed07370ce05517 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn next-item [array elem] | |
(get (into-array array) (inc (.indexOf array elem)))) | |
(fact "next-item" | |
(next-item (range 1 25) 12) => 13 | |
(next-item [:a :b :c] :b) => :c) |
erickpintor
commented
Jan 19, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment