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. justThat :: These a b -> Maybe b

    these Data.These.Combinators

    No documentation available.

  2. justThere :: These a b -> Maybe b

    these Data.These.Combinators

    >>> justThere (This 'x')
    Nothing
    
    >>> justThere (That 'y')
    Just 'y'
    
    >>> justThere (These 'x' 'y')
    Just 'y'
    

  3. justThese :: These a b -> Maybe (a, b)

    these Data.These.Combinators

    No documentation available.

  4. justThis :: These a b -> Maybe a

    these Data.These.Combinators

    No documentation available.

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

    rio RIO.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"
    

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

    rio RIO.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"
    

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

    rio RIO.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"
    

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

    rio RIO.Text.Lazy

    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. justVarInterpolation :: ShakespeareSettings -> Bool

    shakespeare Text.Shakespeare

    No documentation available.

  10. justErr :: e -> Maybe a -> Either e a

    errors Control.Error.Safe

    A fromJust that fails in the Either monad

Page 18 of many | Previous | Next