Skip to content
Snippets Groups Projects
Commit 39f35526 authored by Manos Koukoutos's avatar Manos Koukoutos
Browse files

Remove useless type param.

parent a2d74af8
No related branches found
No related tags found
No related merge requests found
......@@ -135,12 +135,12 @@ object State {
l match {
case Nil() => unit(z)
case x :: xs =>
f(z, x) >>= ( z0 => foldLeftM(f, z0,xs) )
f(z, x) >>= ( z0 => foldLeftM(f,z0,xs) )
}
}
//(b -> a -> m b) -> b -> t a -> m ()
def foldLeftM_ [S, A, B](f: A => State[S, Unit], l: List[A]): State[S, Unit] = {
def foldLeftM_ [S, A](f: A => State[S, Unit], l: List[A]): State[S, Unit] = {
l match {
case Nil() => unit(())
case x :: xs =>
......@@ -422,4 +422,4 @@ object ExampleStackEval {
// evalM(e).exec(empty).head == eval(e)
//}.holds
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment