Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. setInput :: forall (m :: Type -> Type) s u . Monad m => s -> ParsecT s u m ()

    parsec Text.ParserCombinators.Parsec.Prim

    setInput input continues parsing with input. The getInput and setInput functions can for example be used to deal with #include files.

  2. setParserState :: forall (m :: Type -> Type) s u . Monad m => State s u -> ParsecT s u m (State s u)

    parsec Text.ParserCombinators.Parsec.Prim

    setParserState st set the full parser state to st.

  3. setPosition :: forall (m :: Type -> Type) s u . Monad m => SourcePos -> ParsecT s u m ()

    parsec Text.ParserCombinators.Parsec.Prim

    setPosition pos sets the current source position to pos.

  4. 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.

  5. 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.

  6. setEnvironment :: [(String, String)] -> IO ()

    unix System.Posix.Env

    setEnvironment resets the entire environment to the given list of (key,value) pairs.

  7. 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.

  8. setEnvironment :: [(ByteString, ByteString)] -> IO ()

    unix System.Posix.Env.ByteString

    setEnvironment resets the entire environment to the given list of (key,value) pairs.

  9. 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.

  10. setEnvironment :: [(PosixString, PosixString)] -> IO ()

    unix System.Posix.Env.PosixString

    setEnvironment resets the entire environment to the given list of (key,value) pairs.

Page 154 of many | Previous | Next