2009-02-07から1日間の記事一覧

Arrow.hsを読もう〜その2〜

Arrow.hsを読もう〜その1〜 - みずぴー日記の続き。Arrow.hsを読もう、30分で読める範囲だけ。 ArrowApply instance ArrowApply (->) where app (f,x) = f x 単なる適用。(->)以外だと嬉しいんだろう、たぶん。 leftApp -- | Any instance of 'ArrowApply' c…

Scalaコンパイラを落とす3行のコード

既知のバグ(NullPointerException when using case class with function-valued field · Issue #1087 · scala/bug · GitHub)だったようです。 Scalaコンパイラを落とすコード。 class A case class B extends A case class C(f : Unit => Unit) extends B $ …