Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adjust some test code for 2.13 collections changes #68

Merged
merged 2 commits into from Apr 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=1.0.4
sbt.version=1.1.4
4 changes: 2 additions & 2 deletions src/test/scala/polylambda.scala
Expand Up @@ -24,9 +24,9 @@ class PolyLambdas {

val kf4 = λ[Option ~>> Option].dingo(_ flatMap (_ => None))

val kf5 = λ[Map[?, Int] ~> Map[?, Long]](_ mapValues (_.toLong))
val kf5 = λ[Map[?, Int] ~> Map[?, Long]](_.mapValues(_.toLong).toMap)

val kf6 = λ[ToSelf[Map[?, Int]]](_ mapValues (_ * 2))
val kf6 = λ[ToSelf[Map[?, Int]]](_.mapValues(_ * 2).toMap)

implicit class FGOps[F[_], A](x: F[A]) {
def ntMap[G[_]](kf: F ~> G): G[A] = kf(x)
Expand Down