Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
setState :: forall (m :: Type -> Type) u s . Monad m => u -> ParsecT s u m ()parsec Text.ParserCombinators.Parsec.Prim An alias for putState for backwards compatibility.
setEnv :: String -> String -> Bool -> IO ()unix System.Posix.Env The setEnv function inserts or resets the environment variable name in the current environment list. If the variable name does not exist in the list, it is inserted with the given value. If the variable does exist, the argument overwrite is tested; if overwrite is False, the variable is not reset, otherwise it is reset to the given value.
setEnvironment :: [(String, String)] -> IO ()unix System.Posix.Env setEnvironment resets the entire environment to the given list of (key,value) pairs.
setEnv :: ByteString -> ByteString -> Bool -> IO ()unix System.Posix.Env.ByteString The setEnv function inserts or resets the environment variable name in the current environment list. If the variable name does not exist in the list, it is inserted with the given value. If the variable does exist, the argument overwrite is tested; if overwrite is False, the variable is not reset, otherwise it is reset to the given value.
setEnvironment :: [(ByteString, ByteString)] -> IO ()unix System.Posix.Env.ByteString setEnvironment resets the entire environment to the given list of (key,value) pairs.
setEnv :: PosixString -> PosixString -> Bool -> IO ()unix System.Posix.Env.PosixString The setEnv function inserts or resets the environment variable name in the current environment list. If the variable name does not exist in the list, it is inserted with the given value. If the variable does exist, the argument overwrite is tested; if overwrite is False, the variable is not reset, otherwise it is reset to the given value.
setEnvironment :: [(PosixString, PosixString)] -> IO ()unix System.Posix.Env.PosixString setEnvironment resets the entire environment to the given list of (key,value) pairs.
setFdMode :: Fd -> FileMode -> IO ()unix System.Posix.Files setFdMode fd mode acts like setFileMode but uses a file descriptor fd instead of a FilePath. Note: calls fchmod.
setFdOwnerAndGroup :: Fd -> UserID -> GroupID -> IO ()unix System.Posix.Files Acts as setOwnerAndGroup but uses a file descriptor instead of a FilePath. Note: calls fchown.
setFdSize :: Fd -> FileOffset -> IO ()unix System.Posix.Files Acts as setFileSize but uses a file descriptor instead of a FilePath. Note: calls ftruncate.