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.
-
Chart Graphics.Rendering.Chart.Plot.Candle No documentation available.
_plot_all_points :: Plot x y -> ([x], [y])Chart Graphics.Rendering.Chart.Plot.Types All of the model space coordinates to be plotted. These are used to autoscale the axes where necessary.
-
Chart Graphics.Rendering.Chart.Plot.Types No documentation available.
saslChallengeFunc :: SASLMechanism -> !Maybe (ByteString -> IO ByteString)amqp Network.AMQP challenge processing function
-
annotated-exception Control.Exception.Annotated Deprecated: You can just use CallStack directly now.
CallStackAnnotation :: [(String, SrcLoc)] -> CallStackAnnotationannotated-exception Control.Exception.Annotated Deprecated: You can just use CallStack directly now.
addCallStackToException :: CallStack -> AnnotatedException exception -> AnnotatedException exceptionannotated-exception Control.Exception.Annotated Adds a CallStack to the given AnnotatedException. This function will search through the existing annotations, and it will not add a second CallStack to the list. Instead, it will append the contents of the given CallStack to the existing one. This mirrors the behavior of the way HasCallStack actually works.
annotatedExceptionCallStack :: AnnotatedException exception -> Maybe CallStackannotated-exception Control.Exception.Annotated Retrieves the CallStack from an AnnotatedException if one is present. The library maintains an internal check that a single CallStack is present in the list, so this only returns the first one found. If you have added a CallStack directly to the [Annotation], then this will likely break.
checkpointCallStack :: (MonadCatch m, HasCallStack) => m a -> m aannotated-exception Control.Exception.Annotated Adds only the current CallStack to the checkpoint. This function searches any thrown exception for a pre-existing CallStack and will merge the given pre-existing CallStack with the one on this function, in an attempt to preserve the actual call history.
checkpointCallStackWith :: (MonadCatch m, HasCallStack) => [Annotation] -> m a -> m aannotated-exception Control.Exception.Annotated Deprecated: As of 0.2.0.0 this is exactly equivalent to checkpointMany.