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.
justifyContent :: JustifyContentValue -> Cssclay Clay No documentation available.
justifyContent :: JustifyContentValue -> Cssclay Clay.Flexbox No documentation available.
-
clay Clay.Text No documentation available.
justAcquired :: DownloadAccessRestriction -> Maybe Boolgogol-books Gogol.Books If deviceAllowed, whether access was just acquired with this request.
justAcquired :: DownloadAccessRestriction -> Maybe Boolgogol-books Gogol.Books.Types If deviceAllowed, whether access was just acquired with this request.
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.
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."]
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.
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."]
fromJust :: HasCallStack => Maybe a -> abase 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.