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. justifyRight :: Int64 -> Char -> Text -> Text

    text 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"
    

  2. justName :: Name

    template-haskell Language.Haskell.TH.Syntax

    No documentation available.

  3. justT :: MonadGen m => m (Maybe a) -> m a

    hedgehog Hedgehog.Gen

    Runs a Maybe generator until it produces a Just. This is implemented using filter and has the same caveats.

  4. justT :: MonadGen m => m (Maybe a) -> m a

    hedgehog Hedgehog.Internal.Gen

    Runs a Maybe generator until it produces a Just. This is implemented using filter and has the same caveats.

  5. justDataConKey :: Unique

    ghc GHC.Builtin.Names

    No documentation available.

  6. justDataCon :: DataCon

    ghc GHC.Builtin.Types

    No documentation available.

  7. justDataConName :: Name

    ghc GHC.Builtin.Types

    No documentation available.

  8. justBytecode :: Linkable -> HomeModLinkable

    ghc GHC.Unit.Home.ModInfo

    No documentation available.

  9. justObjects :: Linkable -> HomeModLinkable

    ghc GHC.Unit.Home.ModInfo

    No documentation available.

  10. justHere :: These a b -> Maybe a

    these Data.These.Combinators

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

Page 17 of many | Previous | Next