by shigemk2

当面は技術的なことしか書かない

2016-03-07から1日間の記事一覧

sbt pr 2499

will while Fix a few typos by ddworak · Pull Request #2499 · sbt/sbt · GitHub

flatMapを試してみよう

特に理由はないです。 scala> val a: Option[Int] = None a: Option[Int] = None scala> a.flatMap ( x => Option(x + 10)) res14: Option[Int] = None scala> val a: Option[Int] = Option(300) a: Option[Int] = Some(300) scala> a.flatMap ( x => Option…

react pr 6200

update Update to jest 0.9.0. by cpojer · Pull Request #6200 · facebook/react · GitHub