Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. justifyContent :: JustifyContentValue -> Css

    clay Clay

    No documentation available.

  2. justifyContent :: JustifyContentValue -> Css

    clay Clay.Flexbox

    No documentation available.

  3. justify :: TextAlign

    clay Clay.Text

    No documentation available.

  4. justAcquired :: DownloadAccessRestriction -> Maybe Bool

    gogol-books Gogol.Books

    If deviceAllowed, whether access was just acquired with this request.

  5. justAcquired :: DownloadAccessRestriction -> Maybe Bool

    gogol-books Gogol.Books.Types

    If deviceAllowed, whether access was just acquired with this request.

  6. justify :: Int -> [String] -> [String]

    table-layout Text.Layout.Table

    Fits as many words on a line as possible depending on the given width. Every line, except the last one, gets equally filled with spaces between the words as far as possible.

  7. justifyText :: Int -> String -> [String]

    table-layout Text.Layout.Table

    Uses words to split the text into words and justifies it with justify.

    >>> justifyText 10 "This text will not fit on one line."
    ["This  text","will   not","fit on one","line."]
    

  8. justify :: Int -> [String] -> [String]

    table-layout Text.Layout.Table.Justify

    Fits as many words on a line as possible depending on the given width. Every line, except the last one, gets equally filled with spaces between the words as far as possible.

  9. justifyText :: Int -> String -> [String]

    table-layout Text.Layout.Table.Justify

    Uses words to split the text into words and justifies it with justify.

    >>> justifyText 10 "This text will not fit on one line."
    ["This  text","will   not","fit on one","line."]
    

  10. fromJust :: HasCallStack => Maybe a -> a

    base Data.Maybe

    The fromJust function extracts the element out of a Just and throws an error if its argument is Nothing.

    Examples

    Basic usage:
    >>> fromJust (Just 1)
    1
    
    >>> 2 * (fromJust (Just 10))
    20
    
    >>> 2 * (fromJust Nothing)
    *** Exception: Maybe.fromJust: Nothing
    ...
    
    WARNING: This function is partial. You can use case-matching instead.

Page 24 of many | Previous | Next