To add to the list, I wrote `defpatterned` for /Functional Programming for the Object-Oriented Programmer/. https://github.com/marick/patterned There are probably many others.
Moving pattern matching closer to `clojure.core` might be a good thing for a roadmap. I'm pretty excited by pattern-matching in Elixir - seems more than a novelty.
Colin Taylor wrote:
Defm does this too though I've never got round to fully finishing it.
(defm file-or-string-fn []
([File] (println "It's a file"))
([s :- String] (println "It's a string " s))
(["magic"] (println "It's magic"))
([_] (println "It's a " (type _1))))
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
---
You received this message because you are subscribed to the Google Groups "Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.