EK
А как данные прочитать или вернуть ?
Size: a a a
EK
KC
EK
KC
EK
KC
KC
((comp split-str trim-str) data)
EK
DF
(split-str ( trim-str data))
DF
AC
ST
DL
KR
KC
DF
(def coll [-2 -1 0 1 2])
(->> coll
(filter pos?)
(map str)) ;; => ("1" "2")
(transduce
(comp
(filter pos?)
(map str))
conj [] coll) ;; => ["1" "2"]
(transduce
(fn [x]
((filter pos?)
((map str)
x)))
conj [] coll) ;; => ["1" "2"]
(transduce
(fn [coll]
(->> coll
((map str))
((filter pos?))))
conj [] coll) ;; => ["1" "2"]
DF
AK
MP