这里真的很简单的问题。看完精彩的镜头介绍后:
http://www.youtube.com/watch?v=efv0SQNde5Q
我想我可能会尝试演讲中提到的简单示例之一:
import scalaz.Lens._
fst.andThen(snd).set(((1,2),3),9)
这之后是这个错误
error: type mismatch;
found : scalaz.Lens[(Nothing, Nothing),Nothing]
required: scalaz.Lens[(Nothing, Nothing),C]
Note: Nothing <: C, but class Lens is invariant in type B.
You may wish to define B as +B instead. (SLS 4.5)
fst.andThen(snd).set(((1,2),3))
^
关于如何完成这项工作的任何想法?