Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
readMutVar# :: MutVar# s a_levpoly -> State# s -> (# State# s, a_levpoly #)ghc-prim GHC.PrimopWrappers No documentation available.
readTVar# :: TVar# s a_levpoly -> State# s -> (# State# s, a_levpoly #)ghc-prim GHC.PrimopWrappers No documentation available.
readTVarIO# :: TVar# s a_levpoly -> State# s -> (# State# s, a_levpoly #)ghc-prim GHC.PrimopWrappers No documentation available.
writeMutVar# :: MutVar# s a_levpoly -> a_levpoly -> State# s -> State# sghc-prim GHC.PrimopWrappers No documentation available.
writeTVar# :: TVar# s a_levpoly -> a_levpoly -> State# s -> State# sghc-prim GHC.PrimopWrappers No documentation available.
InvalidProxyEnvironmentVariable :: Text -> Text -> HttpExceptionContenthttp-client Network.HTTP.Client Values in the proxy environment variable were invalid. Provides the environment variable name and its value.
InvalidProxyEnvironmentVariable :: Text -> Text -> HttpExceptionContenthttp-client Network.HTTP.Client.Internal Values in the proxy environment variable were invalid. Provides the environment variable name and its value.
mkWeakTVar :: MonadUnliftIO m => TVar a -> m () -> m (Weak (TVar a))unliftio UnliftIO.STM Lifted version of mkWeakTVar
modifyTVar :: TVar a -> (a -> a) -> STM ()unliftio UnliftIO.STM Mutate the contents of a TVar. N.B., this version is non-strict.
modifyTVar' :: TVar a -> (a -> a) -> STM ()unliftio UnliftIO.STM Strict version of modifyTVar.