Entries from 2011-08-07 to 1 day

Clojureを学習し始めたのは オブラブ 2011の佐藤さんの講演を聴いた、DDDのしなやかな設計を読んで「あれ?関数型の方が似合うんじゃね」と思った、過去に何度か Lisp系・関数型アプローチに挫折しつつも再挑戦したいと思っていたなどなど。 値オブジェクト …

Clojure マルチメソッド

(defmulti area :Shape) (defn rect[wd ht] {:Shape :Rect :wd wd :ht ht}) (defn circle[radius] {:Shape :Circle :radius radius}) (defn in-fun-shape[fun a b] {:Shape :InFunction :fun fun :a a :b b}) (defmethod area :Circle [c] (* (. Math PI) (*…