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.
justThat :: These a b -> Maybe bthese Data.These.Combinators No documentation available.
justThere :: These a b -> Maybe bthese Data.These.Combinators >>> justThere (This 'x') Nothing
>>> justThere (That 'y') Just 'y'
>>> justThere (These 'x' 'y') Just 'y'
justThese :: These a b -> Maybe (a, b)these Data.These.Combinators No documentation available.
justThis :: These a b -> Maybe athese Data.These.Combinators No documentation available.
justifyLeft :: Int -> Char -> Text -> Textrio 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"
justifyRight :: Int -> Char -> Text -> Textrio 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"
justifyLeft :: Int64 -> Char -> Text -> Textrio 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"
justifyRight :: Int64 -> Char -> Text -> Textrio 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"
justVarInterpolation :: ShakespeareSettings -> Boolshakespeare Text.Shakespeare No documentation available.
justErr :: e -> Maybe a -> Either e aerrors Control.Error.Safe A fromJust that fails in the Either monad