[clojure/es] Balance parens (#5253)

This commit is contained in:
Henré Botha 2025-02-13 16:03:32 +01:00 committed by GitHub
parent 5364bb3339
commit 9a7151dba1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -294,9 +294,9 @@ keymap ; => {:a 1, :b 2, :c 3}
; operaciones de colecciones en particular:
(->>
(range 10)
(map inc) ;=> (map inc (range 10)
(filter odd?) ;=> (filter odd? (map inc (range 10))
(into [])) ;=> (into [] (filter odd? (map inc (range 10)))
(map inc) ;=> (map inc (range 10))
(filter odd?) ;=> (filter odd? (map inc (range 10)))
(into [])) ;=> (into [] (filter odd? (map inc (range 10))))
; Result: [1 3 5 7 9]
; Cuando estés en una situación donde quieras tener más libertad en donde