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.
setWayDynFlag :: DynFlags -> DynFlagsihaskell 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.
setVersion :: MessageHeader -> String -> MessageHeaderihaskell IHaskell.Types Modifies a header and appends the version of the Widget Messaging Protocol as metadata
setAddrRange# :: Addr# -> Int# -> Int# -> State# RealWorld -> State# RealWorldihaskell 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.
setByteArray# :: MutableByteArray# d -> Int# -> Int# -> Int# -> State# d -> State# dihaskell 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.
setThreadAllocationCounter# :: Int64# -> State# RealWorld -> State# RealWorldihaskell IHaskellPrelude Sets the allocation counter for the current thread to the given value.
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.
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.
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.
-
isocline System.Console.Isocline Set the delay in milliseconds before a hint is displayed (500ms by default) See also enableHint
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.