(let [inc #(+ % 10)] (inc 2))
12
(let [inc #(+ %10)] `(inc 2))
(clojure.core/inc 2)
(reduce #(%2 %1) 0 [inc inc dec dec])
0
(let [x (gensym)] `[(inc ~x) `(inc ~~x)])
[(clojure.core/inc G__3087823) (clojure.core/sequence (clojure.core/seq (clojure.core/concat (clojure.core/list (quote clojure.core/inc)) (clojure.core/list G__3087823))))]
(def inc clojure.core/inc)
#'user/inc
(deliver inc 3)
4
(doto 1 inc)
1
(:name (meta inc))
nil
(some-> 0 inc)
1
(->> 1 inc)
2
((cat inc) 1)
2
(map inc [0])
(1)
((var inc) 1)
2
(-> 5 (inc))
6
(inc (dec 1))
1
(type (inc Integer/MAX_VALUE))
java.lang.Long
(-> 0 inc)
1
((reduce (fn [f1 f2] (fn [& args] (f1 (apply f2 args)))) [inc inc inc]) 1)
4
(let [x 10 x (inc x) x (inc x)] x)
12
(let [x 1 x (inc x) x (inc x)] x)
3
(-> * (#(%)) inc (doto (->> (def foo))) inc)
3
(take 10 (map vector (iterate inc 1) (iterate inc 2)))
([1 2] [2 3] [3 4] [4 5] [5 6] [6 7] [7 8] [8 9] [9 10] [10 11])
(map apply [inc inc dec] (map list [3 5 11]))
(4 6 10)
(-> * (#(%)) inc (->> (def foo) deref) inc)
3
(-> 7 inc dec (as-> y (+ y y)) inc)
15
(str (map inc [1]))
"clojure.lang.LazySeq@21"
(counted? (iterate inc 0))
false
(inc (* 3 4))
13
(chunked-seq? (map inc (range)))
false
(map inc [1336 41])
(1337 42)
(eval '(inc 5))
6
(cond-> 2 even? inc)
3
(((partial partial inc) 5))
6
(def xf (map inc))
#'user/xf
(inc (get {} :test 0))
1
(seq? (iterate inc 0))
true
(mapv inc [0 1])
[1 2]
((comp inc -) 2)
-1
(inc (+ 1 Integer/MAX_VALUE))
2147483649
(class (comp inc dec))
clojure.core$comp$fn__5876
((juxt identity inc) 1)
[1 2]
(second (iterate inc 1))
2
(swap! (atom 1) inc)
2
((juxt [inc dec]) 1)
[#object [clojure.core$dec 0x7ae92de2 "clojure.core$dec@7ae92de2"]]
(def a (map inc))
#'user/a
(sequential? (iterate inc 0))
true
(->> 1 inc dec)
1
(realized? (map inc (range)))
false
((juxt inc dec) 41)
[42 40]
((juxt inc dec) 1)
[2 0]