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. parallel :: [IO a] -> Shell a

    turtle Turtle.Prelude

    Run a list of IO actions in parallel using fork and wait.

    >>> view (parallel [(sleep 3) >> date, date, date])
    2016-12-01 17:22:10.83296 UTC
    2016-12-01 17:22:07.829876 UTC
    2016-12-01 17:22:07.829963 UTC
    

  2. whichAll :: FilePath -> Shell FilePath

    turtle Turtle.Prelude

    Show all matching executables in PATH, not just the first

  3. optionalLenientHeader :: forall (name :: Symbol) val h (ts :: [Type]) . (Get h (RequestHeader 'Optional 'Lenient name val), ArrowChoice h) => Middleware h ts (RequestHeader 'Optional 'Lenient name val ': ts)

    webgear-core WebGear.Core.Trait.Header

    Extract a request header value and convert it to a value of type val. The associated trait attribute has type Maybe (Either Text val). The parsing is done leniently. Any parsing errors and missing header are reported in the trait attribute. Example usage:

    optionalLenientHeader @"Content-Length" @Integer handler
    

  4. optionalLenientQueryParam :: forall (name :: Symbol) val h (ts :: [Type]) . (Get h (QueryParam 'Optional 'Lenient name val), ArrowChoice h) => Middleware h ts (QueryParam 'Optional 'Lenient name val ': ts)

    webgear-core WebGear.Core.Trait.QueryParam

    Extract a query parameter and convert it to a value of type val. Example usage:

    optionalLenientQueryParam @"Content-Length" @Integer handler
    
    The associated trait attribute has type Maybe (Either Text val). The parsing is done leniently. Any parsing errors and missing query parameters are reported in the trait attribute.

  5. methodNotAllowed405 :: Set h Status => h () (With Response '[Status])

    webgear-core WebGear.Core.Trait.Status

    Method Not Allowed 405 response

  6. besideTall :: Grid a -> a -> Grid a

    Chart Graphics.Rendering.Chart.Grid

    A value placed to the right of the grid, occupying 1 column with the same vertical span as the grid.

  7. tallBeside :: a -> Grid a -> Grid a

    Chart Graphics.Rendering.Chart.Grid

    A value placed to the left of the grid, occupying 1 column with the same vertical span as the grid.

  8. layout_all_font_styles :: forall x y f . Settable f => (FontStyle -> f FontStyle) -> Layout x y -> f (Layout x y)

    Chart Graphics.Rendering.Chart.Layout

    Setter to update all the font styles on a Layout

  9. layoutlr_all_font_styles :: forall x y1 y2 f . Settable f => (FontStyle -> f FontStyle) -> LayoutLR x y1 y2 -> f (LayoutLR x y1 y2)

    Chart Graphics.Rendering.Chart.Layout

    Setter to update all the font styles on a LayoutLR

  10. _plot_candle_fall_fill_style :: PlotCandle x y -> FillStyle

    Chart Graphics.Rendering.Chart.Plot.Candle

    No documentation available.

Page 698 of many | Previous | Next