Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. setWayDynFlag :: DynFlags -> DynFlags

    ihaskell IHaskell.Eval.Util

    Consult the RTS to find if GHC has been built with dynamic linking and then turn on the dynamic way for GHC. Otherwise it does nothing.

  2. setVersion :: MessageHeader -> String -> MessageHeader

    ihaskell IHaskell.Types

    Modifies a header and appends the version of the Widget Messaging Protocol as metadata

  3. setAddrRange# :: Addr# -> Int# -> Int# -> State# RealWorld -> State# RealWorld

    ihaskell IHaskellPrelude

    setAddrRange# dest len c sets all of the bytes in [dest, dest+len) to the value c. Analogous to the standard C function memset, but with a different argument order. Warning: this can fail with an unchecked exception.

  4. setByteArray# :: MutableByteArray# d -> Int# -> Int# -> Int# -> State# d -> State# d

    ihaskell IHaskellPrelude

    setByteArray# ba off len c sets the byte range [off, off+len) of the MutableByteArray# to the byte c. Warning: this can fail with an unchecked exception.

  5. setThreadAllocationCounter# :: Int64# -> State# RealWorld -> State# RealWorld

    ihaskell IHaskellPrelude

    Sets the allocation counter for the current thread to the given value.

  6. setDefaultCompleter :: (CompletionEnv -> String -> IO ()) -> IO ()

    isocline System.Console.Isocline

    setDefaultCompleter completer: Set a new tab-completion function completer that is called by Isocline automatically. The callback is called with a CompletionEnv context and the current user input up to the cursor. By default the completeFileName completer is used. This overwrites any previously set completer.

  7. setDefaultFmtHighlighter :: (String -> Fmt) -> IO ()

    isocline System.Console.Isocline

    Set a syntax highlighter that uses a pure function that returns a bbcode formatted string (using style, plain etc). See highlightFmt for more information. There can only be one highlight function, setting it again disables the previous one.

  8. setDefaultHighlighter :: (HighlightEnv -> String -> IO ()) -> IO ()

    isocline System.Console.Isocline

    Set a syntax highlighter. There can only be one highlight function, setting it again disables the previous one.

  9. setHintDelay :: Int -> IO Int

    isocline System.Console.Isocline

    Set the delay in milliseconds before a hint is displayed (500ms by default) See also enableHint

  10. setHistory :: FilePath -> Int -> IO ()

    isocline System.Console.Isocline

    setHistory filename maxEntries: Enable history that is persisted to the given file path with a given maximum number of entries. Use -1 for the default entries (200). See also enableHistoryDuplicates.

Page 720 of many | Previous | Next