clojure-germany

javahippie 2021-04-01T07:06:07.136700Z

Gefällt mir auch gut, ziemlich gut lesbar

RAMart 2021-04-01T08:11:53.138400Z

@henrikheine definitiv. (Und auch, wenn das nicht unbedingt eine Garantie ist: Es entspricht zudem einem Beispiel unter https://clojuredocs.org

;; test argument against various unary predicates
(condp apply [:foo]
  string? "it's a string"
  keyword? "it's a keyword"
  symbol? "it's a symbol"
  fn? "it's a function"
  "something else!")
;;=> "it's a keyword"
Quelle: https://clojuredocs.org/clojure.core/condp

👍 2
synthomat 2021-04-01T09:25:19.138700Z

moin