{-# LANGUAGE CPP, MagicHash, Rank2Types #-}
module Control.Monad.ST.Trans(
STT,
runST,
runSTT,
STRef,
newSTRef,
readSTRef,
writeSTRef,
STArray,
newSTArray,
readSTArray,
writeSTArray,
boundsSTArray,
numElementsSTArray,
freezeSTArray,
thawSTArray,
runSTArray,
unsafeReadSTArray,
unsafeWriteSTArray,
unsafeFreezeSTArray,
unsafeThawSTArray,
unsafeIOToSTT,
unsafeSTToIO,
unsafeSTTToIO,
unsafeSTRefToIORef,
unsafeIORefToSTRef
) where
import GHC.Base (realWorld#)
import GHC.Arr (Ix, Array(..))
import qualified GHC.Arr as STArray
#if __GLASGOW_HASKELL__ <= 708
import Control.Applicative (Applicative)
#endif
import Control.Monad.ST.Trans.Internal
import Data.Array.ST (STArray, newArray, readArray, writeArray)
import Data.IORef (IORef)
import Data.STRef (STRef)
import qualified Data.STRef as STRef
import System.IO.Unsafe (unsafePerformIO)
import Unsafe.Coerce (unsafeCoerce)
{-# INLINE newSTRef #-}
newSTRef :: (Applicative m) => a -> STT s m (STRef s a)
newSTRef :: forall (m :: * -> *) a s. Applicative m => a -> STT s m (STRef s a)
newSTRef a
i = forall (m :: * -> *) s a. Applicative m => ST s a -> STT s m a
liftST (forall a s. a -> ST s (STRef s a)
STRef.newSTRef a
i)
{-# INLINE readSTRef #-}
readSTRef :: (Applicative m) => STRef s a -> STT s m a
readSTRef :: forall (m :: * -> *) s a. Applicative m => STRef s a -> STT s m a
readSTRef STRef s a
ref = forall (m :: * -> *) s a. Applicative m => ST s a -> STT s m a
liftST (forall s a. STRef s a -> ST s a
STRef.readSTRef STRef s a
ref)
{-# INLINE writeSTRef #-}
writeSTRef :: (Applicative m) => STRef s a -> a -> STT s m ()
writeSTRef :: forall (m :: * -> *) s a.
Applicative m =>
STRef s a -> a -> STT s m ()
writeSTRef STRef s a
ref a
a = forall (m :: * -> *) s a. Applicative m => ST s a -> STT s m a
liftST (forall s a. STRef s a -> a -> ST s ()
STRef.writeSTRef STRef s a
ref a
a)
{-# DEPRECATED runST "Use runSTT instead" #-}
{-# NOINLINE runST #-}
runST :: Monad m => (forall s. STT s m a) -> m a
runST :: forall (m :: * -> *) a. Monad m => (forall s. STT s m a) -> m a
runST forall s. STT s m a
m = let (STT State# s -> m (STTRet s a)
f) = forall s. STT s m a
m
in do (STTRet State# RealWorld
_st a
a) <- ( forall {s}. State# s -> m (STTRet s a)
f State# RealWorld
realWorld# )
forall (m :: * -> *) a. Monad m => a -> m a
return a
a
{-# NOINLINE runSTT #-}
runSTT :: Monad m => (forall s. STT s m a) -> m a
runSTT :: forall (m :: * -> *) a. Monad m => (forall s. STT s m a) -> m a
runSTT forall s. STT s m a
m = let (STT State# s -> m (STTRet s a)
f) = forall s. STT s m a
m
in do (STTRet State# RealWorld
_st a
a) <- ( forall {s}. State# s -> m (STTRet s a)
f State# RealWorld
realWorld# )
forall (m :: * -> *) a. Monad m => a -> m a
return a
a
{-# INLINE newSTArray #-}
newSTArray :: (Ix i, Applicative m) =>
(i,i) -> e -> STT s m (STArray s i e)
newSTArray :: forall i (m :: * -> *) e s.
(Ix i, Applicative m) =>
(i, i) -> e -> STT s m (STArray s i e)
newSTArray (i, i)
bnds e
i = forall (m :: * -> *) s a. Applicative m => ST s a -> STT s m a
liftST (forall (a :: * -> * -> *) e (m :: * -> *) i.
(MArray a e m, Ix i) =>
(i, i) -> e -> m (a i e)
newArray (i, i)
bnds e
i)
{-# INLINE boundsSTArray #-}
boundsSTArray :: STArray s i e -> (i,i)
boundsSTArray :: forall s i e. STArray s i e -> (i, i)
boundsSTArray = forall s i e. STArray s i e -> (i, i)
STArray.boundsSTArray
{-# INLINE numElementsSTArray #-}
numElementsSTArray :: STArray s i e -> Int
numElementsSTArray :: forall s i e. STArray s i e -> Int
numElementsSTArray = forall s i e. STArray s i e -> Int
STArray.numElementsSTArray
{-# INLINE readSTArray #-}
readSTArray :: (Ix i, Applicative m) =>
STArray s i e -> i -> STT s m e
readSTArray :: forall i (m :: * -> *) s e.
(Ix i, Applicative m) =>
STArray s i e -> i -> STT s m e
readSTArray STArray s i e
arr i
i = forall (m :: * -> *) s a. Applicative m => ST s a -> STT s m a
liftST (forall (a :: * -> * -> *) e (m :: * -> *) i.
(MArray a e m, Ix i) =>
a i e -> i -> m e
readArray STArray s i e
arr i
i)
{-# INLINE unsafeReadSTArray #-}
unsafeReadSTArray :: (
#if __GLASGOW_HASKELL__ <= 710
Ix i,
#endif
Applicative m) =>
STArray s i e -> Int -> STT s m e
unsafeReadSTArray :: forall (m :: * -> *) s i e.
Applicative m =>
STArray s i e -> Int -> STT s m e
unsafeReadSTArray STArray s i e
arr Int
i = forall (m :: * -> *) s a. Applicative m => ST s a -> STT s m a
liftST (forall s i e. STArray s i e -> Int -> ST s e
STArray.unsafeReadSTArray STArray s i e
arr Int
i)
{-# INLINE writeSTArray #-}
writeSTArray :: (Ix i, Applicative m) =>
STArray s i e -> i -> e -> STT s m ()
writeSTArray :: forall i (m :: * -> *) s e.
(Ix i, Applicative m) =>
STArray s i e -> i -> e -> STT s m ()
writeSTArray STArray s i e
arr i
i e
e = forall (m :: * -> *) s a. Applicative m => ST s a -> STT s m a
liftST (forall (a :: * -> * -> *) e (m :: * -> *) i.
(MArray a e m, Ix i) =>
a i e -> i -> e -> m ()
writeArray STArray s i e
arr i
i e
e)
{-# INLINE unsafeWriteSTArray #-}
unsafeWriteSTArray :: (
#if __GLASGOW_HASKELL__ <= 710
Ix i,
#endif
Applicative m) =>
STArray s i e -> Int -> e -> STT s m ()
unsafeWriteSTArray :: forall (m :: * -> *) s i e.
Applicative m =>
STArray s i e -> Int -> e -> STT s m ()
unsafeWriteSTArray STArray s i e
arr Int
i e
e = forall (m :: * -> *) s a. Applicative m => ST s a -> STT s m a
liftST (forall s i e. STArray s i e -> Int -> e -> ST s ()
STArray.unsafeWriteSTArray STArray s i e
arr Int
i e
e)
{-# INLINE freezeSTArray #-}
freezeSTArray :: (
#if __GLASGOW_HASKELL__ <= 710
Ix i,
#endif
Applicative m) =>
STArray s i e -> STT s m (Array i e)
freezeSTArray :: forall (m :: * -> *) s i e.
Applicative m =>
STArray s i e -> STT s m (Array i e)
freezeSTArray STArray s i e
arr = forall (m :: * -> *) s a. Applicative m => ST s a -> STT s m a
liftST (forall s i e. STArray s i e -> ST s (Array i e)
STArray.freezeSTArray STArray s i e
arr)
{-# INLINE unsafeFreezeSTArray #-}
unsafeFreezeSTArray :: (
#if __GLASGOW_HASKELL__ <= 710
Ix i,
#endif
Applicative m) =>
STArray s i e -> STT s m (Array i e)
unsafeFreezeSTArray :: forall (m :: * -> *) s i e.
Applicative m =>
STArray s i e -> STT s m (Array i e)
unsafeFreezeSTArray STArray s i e
arr = forall (m :: * -> *) s a. Applicative m => ST s a -> STT s m a
liftST (forall s i e. STArray s i e -> ST s (Array i e)
STArray.unsafeFreezeSTArray STArray s i e
arr)
{-# INLINE thawSTArray #-}
thawSTArray :: (
#if __GLASGOW_HASKELL__ <= 710
Ix i,
#endif
Applicative m) =>
Array i e -> STT s m (STArray s i e)
thawSTArray :: forall (m :: * -> *) i e s.
Applicative m =>
Array i e -> STT s m (STArray s i e)
thawSTArray Array i e
arr = forall (m :: * -> *) s a. Applicative m => ST s a -> STT s m a
liftST (forall i e s. Array i e -> ST s (STArray s i e)
STArray.thawSTArray Array i e
arr)
{-# INLINE unsafeThawSTArray #-}
unsafeThawSTArray :: (
#if __GLASGOW_HASKELL__ <= 710
Ix i,
#endif
Applicative m) =>
Array i e -> STT s m (STArray s i e)
unsafeThawSTArray :: forall (m :: * -> *) i e s.
Applicative m =>
Array i e -> STT s m (STArray s i e)
unsafeThawSTArray Array i e
arr = forall (m :: * -> *) s a. Applicative m => ST s a -> STT s m a
liftST (forall i e s. Array i e -> ST s (STArray s i e)
STArray.unsafeThawSTArray Array i e
arr)
{-# INLINE runSTArray #-}
runSTArray :: (
#if __GLASGOW_HASKELL__ <= 710
Ix i,
#endif
#if __GLASGOW_HASKELL__ <= 708
Applicative m,
#endif
Monad m)
=> (forall s . STT s m (STArray s i e))
-> m (Array i e)
runSTArray :: forall (m :: * -> *) i e.
Monad m =>
(forall s. STT s m (STArray s i e)) -> m (Array i e)
runSTArray forall s. STT s m (STArray s i e)
st = forall (m :: * -> *) a. Monad m => (forall s. STT s m a) -> m a
runSTT (forall s. STT s m (STArray s i e)
st forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b
>>= forall (m :: * -> *) s i e.
Applicative m =>
STArray s i e -> STT s m (Array i e)
unsafeFreezeSTArray)
{-# NOINLINE unsafeIOToSTT #-}
unsafeIOToSTT :: (Monad m, Functor m) => IO a -> STT s m a
unsafeIOToSTT :: forall (m :: * -> *) a s. (Monad m, Functor m) => IO a -> STT s m a
unsafeIOToSTT IO a
m = forall (m :: * -> *) a. Monad m => a -> m a
return forall a b. (a -> b) -> a -> b
$! forall a. IO a -> a
unsafePerformIO IO a
m
{-# DEPRECATED unsafeSTToIO "Use unsafeSTTToIO instead" #-}
unsafeSTToIO :: STT s IO a -> IO a
unsafeSTToIO :: forall s a. STT s IO a -> IO a
unsafeSTToIO STT s IO a
m = forall (m :: * -> *) a. Monad m => (forall s. STT s m a) -> m a
runSTT forall a b. (a -> b) -> a -> b
$ forall a b. a -> b
unsafeCoerce STT s IO a
m
unsafeSTTToIO :: STT s IO a -> IO a
unsafeSTTToIO :: forall s a. STT s IO a -> IO a
unsafeSTTToIO STT s IO a
m = forall (m :: * -> *) a. Monad m => (forall s. STT s m a) -> m a
runSTT forall a b. (a -> b) -> a -> b
$ forall a b. a -> b
unsafeCoerce STT s IO a
m
unsafeSTRefToIORef :: STRef s a -> IORef a
unsafeSTRefToIORef :: forall s a. STRef s a -> IORef a
unsafeSTRefToIORef STRef s a
ref = forall a b. a -> b
unsafeCoerce STRef s a
ref
unsafeIORefToSTRef :: IORef a -> STRef s a
unsafeIORefToSTRef :: forall a s. IORef a -> STRef s a
unsafeIORefToSTRef IORef a
ref = forall a b. a -> b
unsafeCoerce IORef a
ref