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.
justifyRight :: Int64 -> Char -> Text -> Texttext Data.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"
-
template-haskell Language.Haskell.TH.Syntax No documentation available.
justT :: MonadGen m => m (Maybe a) -> m ahedgehog Hedgehog.Gen Runs a Maybe generator until it produces a Just. This is implemented using filter and has the same caveats.
justT :: MonadGen m => m (Maybe a) -> m ahedgehog Hedgehog.Internal.Gen Runs a Maybe generator until it produces a Just. This is implemented using filter and has the same caveats.
-
ghc GHC.Builtin.Names No documentation available.
-
ghc GHC.Builtin.Types No documentation available.
-
ghc GHC.Builtin.Types No documentation available.
justBytecode :: Linkable -> HomeModLinkableghc GHC.Unit.Home.ModInfo No documentation available.
justObjects :: Linkable -> HomeModLinkableghc GHC.Unit.Home.ModInfo No documentation available.
justHere :: These a b -> Maybe athese Data.These.Combinators >>> justHere (This 'x') Just 'x'
>>> justHere (That 'y') Nothing
>>> justHere (These 'x' 'y') Just 'x'