Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. isJust :: Maybe a -> Bool

    ghc-internal GHC.Internal.Data.Maybe

    The isJust function returns True iff its argument is of the form Just _.

    Examples

    Basic usage:
    >>> isJust (Just 3)
    True
    
    >>> isJust (Just ())
    True
    
    >>> isJust Nothing
    False
    
    Only the outer constructor is taken into consideration:
    >>> isJust (Just Nothing)
    True
    

  2. bufferAdjustL :: Int -> Buffer e -> Buffer e

    ghc-internal GHC.Internal.IO.Buffer

    No documentation available.

  3. bufferAdjustOffset :: Word64 -> Buffer e -> Buffer e

    ghc-internal GHC.Internal.IO.Buffer

    No documentation available.

  4. layoutGetJustify :: (HasCallStack, MonadIO m, IsLayout a) => a -> m Bool

    gi-pango GI.Pango.Objects.Layout

    Gets whether each complete line should be stretched to fill the entire width of the layout.

  5. layoutGetJustifyLastLine :: (HasCallStack, MonadIO m, IsLayout a) => a -> m Bool

    gi-pango GI.Pango.Objects.Layout

    Gets whether the last line should be stretched to fill the entire width of the layout. Since: 1.50

  6. layoutSetJustify :: (HasCallStack, MonadIO m, IsLayout a) => a -> Bool -> m ()

    gi-pango GI.Pango.Objects.Layout

    Sets whether each complete line should be stretched to fill the entire width of the layout. Stretching is typically done by adding whitespace, but for some scripts (such as Arabic), the justification may be done in more complex ways, like extending the characters. Note that this setting is not implemented and so is ignored in Pango older than 1.18. Note that tabs and justification conflict with each other: Justification will move content away from its tab-aligned positions. The default value is False. Also see layoutSetJustifyLastLine.

  7. layoutSetJustifyLastLine :: (HasCallStack, MonadIO m, IsLayout a) => a -> Bool -> m ()

    gi-pango GI.Pango.Objects.Layout

    Sets whether the last line should be stretched to fill the entire width of the layout. This only has an effect if layoutSetJustify has been called as well. The default value is False. Since: 1.50

  8. unsafeMakeLoadArrayAdjusted :: Index ix => Comp -> Sz ix -> Maybe e -> (forall s . () => Scheduler s () -> (Ix1 -> e -> ST s ()) -> ST s ()) -> Array DL ix e

    massiv Data.Massiv.Array.Unsafe

    Same as unsafeMakeLoadArray, except will ensure that starting index is correctly adjusted. Which means the writing function gets one less argument.

  9. stepStartAdjust :: Int -> Int -> Int

    massiv Data.Massiv.Core.Index

    Helper for adjusting stride of a chunk

  10. adjust :: (Eq k, Hashable k) => (v -> v) -> k -> InsOrdHashMap k v -> InsOrdHashMap k v

    openapi3 Data.HashMap.Strict.InsOrd.Compat

    No documentation available.

Page 49 of many | Previous | Next