Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. lowerBounded :: Int -> Pattern a -> Pattern [a]

    turtle Turtle.Pattern

    Apply the given pattern at least the given number of times, collecting the results

    >>> match (lowerBounded 5 dot) "123"
    []
    
    >>> match (lowerBounded 2 dot) "123"
    ["123"]
    

  2. upperBounded :: Int -> Pattern a -> Pattern [a]

    turtle Turtle.Pattern

    Apply the given pattern 0 or more times, up to a given bound, collecting the results

    >>> match (upperBounded 5 dot) "123"
    ["123"]
    
    >>> match (upperBounded 2 dot) "123"
    []
    
    >>> match ((,) <$> upperBounded 2 dot <*> chars) "123"
    [("12","3"),("1","23")]
    

  3. newBoundedQ :: BoundedL d => Int -> IO (d elt)

    abstract-deque Data.Concurrent.Deque.Class

    Create a new, bounded deque with a specified capacity.

  4. newBoundedQ :: Int -> IO (SimpleDeque elt)

    abstract-deque Data.Concurrent.Deque.Reference

    No documentation available.

  5. Unbounded :: Queue a

    box Box.Queue

    No documentation available.

  6. alphaTwoUpperUtf8BoundedBuilder :: Country -> Builder 2

    country Country

    No documentation available.

  7. textLineBoundedIO :: Style V2 Double -> Text Double -> IO (Diagram Cairo)

    diagrams-cairo Diagrams.Backend.Cairo.Text

    Creates text diagrams with their envelopes set such that using vcat . map (textLineBounded style) stacks them in the way that the font designer intended. Pango refers to this as logical extents.

  8. textVisualBoundedIO :: Style V2 Double -> Text Double -> IO (Diagram Cairo)

    diagrams-cairo Diagrams.Backend.Cairo.Text

    Creates a text diagram with its envelope set to enclose the glyphs of the text, including leading (though not trailing) whitespace.

  9. maximumBounded :: (Ord a, Bounded a) => [a] -> a

    hledger Hledger.Cli.Script

    The largest element of a list. The result is bounded by minBound.

  10. minimumBounded :: (Ord a, Bounded a) => [a] -> a

    hledger Hledger.Cli.Script

    The largest element of a list. The result is bounded by maxBound.

Page 30 of many | Previous | Next