How to use lift from ToFunctorOps
ToFunctorOps defines a lift method via the ToLiftV implicit, but I can't seem to make it find my functor instances: import scalaz.std.option._ import scalaz.syntax.functor._ import scalaz.syntax.id._ import scalaz.syntax.std.option._ def inc(x: Int) = x + 1 1.some |> (inc _).lift <console>:16: error: could not find implicit value for parameter F: scalaz.Functor[F] 1.some |> (inc _).lift The functor instance for option is visible but the compiler can't seem to find it. Any suggestions as to how I can fix this? Travis Brown I don't understand exactly why this isn't working (and I've just asked a