From 7aa8b6646eae355c6bbef0d1975cb8154b869e3e Mon Sep 17 00:00:00 2001 From: Stephen Diehl Date: Tue, 5 Jul 2016 07:22:46 -0400 Subject: [PATCH] Expose ``state` and ``reader`` functions. --- src/Protolude.hs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Protolude.hs b/src/Protolude.hs index 505673322..592e9e4b9 100644 --- a/src/Protolude.hs +++ b/src/Protolude.hs @@ -198,6 +198,7 @@ import Control.Monad.State as X ( , get , gets , modify + , state , withState , runState @@ -216,6 +217,7 @@ import Control.Monad.Reader as X ( , ask , asks , local + , reader , runReader , runReaderT )