Skip to content
Snippets Groups Projects
Commit 4b225124 authored by Regis Blanc's avatar Regis Blanc
Browse files

import should go at top level

parent 71b6a002
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,8 @@ package leon.monads.state
import leon.collection._
import leon.lang._
import leon.annotation._
import State._
@library
case class State[S, A](runState: S => (A, S)) {
......@@ -149,8 +151,6 @@ object State {
@library
object MonadStateLaws {
import State._
/* Monadic laws:
*
* return a >>= k = k a
......
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