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. newtype JustifyContentValue

    clay Clay

    No documentation available.

  2. JustifyContentValue :: Value -> JustifyContentValue

    clay Clay

    No documentation available.

  3. newtype JustifyContentValue

    clay Clay.Flexbox

    No documentation available.

  4. JustifyContentValue :: Value -> JustifyContentValue

    clay Clay.Flexbox

    No documentation available.

  5. Just' :: a -> Maybe' a

    folds Data.Fold.Internal

    No documentation available.

  6. module Text.Layout.Table.Justify

    Produce justified text, which is spread over multiple rows. For a simple cut, chunksOf from the split package is best suited.

  7. justifyLeft :: Int -> Char -> Text -> Text

    text Data.Text

    O(n) Left-justify a string to the given length, using the specified fill character on the right. Performs replacement on invalid scalar values. Examples:

    >>> justifyLeft 7 'x' "foo"
    "fooxxxx"
    
    >>> justifyLeft 3 'x' "foobar"
    "foobar"
    

  8. justifyRight :: Int -> Char -> Text -> Text

    text Data.Text

    O(n) Right-justify a string to the given length, using the specified fill character on the left. Performs replacement on invalid scalar values. Examples:

    >>> justifyRight 7 'x' "bar"
    "xxxxbar"
    
    >>> justifyRight 3 'x' "foobar"
    "foobar"
    

  9. justifyLeftI :: Integral a => a -> Char -> Stream Char -> Stream Char

    text Data.Text.Internal.Fusion.Common

    No documentation available.

  10. justifyLeft :: Int64 -> Char -> Text -> Text

    text Data.Text.Lazy

    O(n) Left-justify a string to the given length, using the specified fill character on the right. Performs replacement on invalid scalar values. Examples:

    justifyLeft 7 'x' "foo"    == "fooxxxx"
    justifyLeft 3 'x' "foobar" == "foobar"
    

Page 16 of many | Previous | Next