Hoogle Search
Within LTS Haskell 24.40 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
HaXml Text.XML.HaXml.Xtract.Lex No documentation available.
module Text.XML.HaXml.Xtract.
Parse A parser for the Xtract command-language. (The string input is tokenised internally by the lexer lexXtract.) See http://www.haskell.org/HaXml/Xtract.html for the grammar that is accepted.
type
ProgressMeter = MVar ProgressMeterRMissingH Data.Progress.Meter No documentation available.
-
MissingH Data.Progress.Tracker The main Progress object.
type
ProgressCallback = ProgressStatus -> ProgressStatus -> IO ()MissingH Data.Progress.Tracker The type for a callback function for the progress tracker. When given at creation time to 'newProgress'' or when added via addCallback, these functions get called every time the status of the tracker changes. This function is passed two ProgressStatus records: the first reflects the status prior to the update, and the second reflects the status after the update. Please note that the owning Progress object will be locked while the callback is running, so the callback will not be able to make changes to it.
-
MissingH Data.Progress.Tracker The main progress status record.
ProgressStatus :: Integer -> Integer -> Integer -> String -> ProgressTimeSource -> ProgressStatusMissingH Data.Progress.Tracker No documentation available.
-
MissingH Data.Progress.Tracker No documentation available.
type
ProgressTimeSource = IO IntegerMissingH Data.Progress.Tracker A function that, when called, yields the current time. The default is defaultTimeSource.
-
MissingH System.Cmd.Utils Return value from pipeFrom, pipeLinesFrom, pipeTo, or pipeBoth. Contains both a ProcessID and the original command that was executed. If you prefer not to use forceSuccess on the result of one of these pipe calls, you can use (processID ph), assuming ph is your PipeHandle, as a parameter to getProcessStatus.