Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

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

  1. PropModeReplace :: PropMode

    gi-gdk3 GI.Gdk.Enums

    the new data replaces the existing data.

  2. data PropertyState

    gi-gdk3 GI.Gdk.Enums

    Specifies the type of a property change for a EventProperty.

  3. PropertyStateDelete :: PropertyState

    gi-gdk3 GI.Gdk.Enums

    the property was deleted.

  4. PropertyStateNewValue :: PropertyState

    gi-gdk3 GI.Gdk.Enums

    the property value was changed.

  5. module GI.Gdk.Structs.Point

    Defines the x and y coordinates of a point.

  6. newtype Point

    gi-gdk3 GI.Gdk.Structs.Point

    Memory-managed wrapper type.

  7. Point :: ManagedPtr Point -> Point

    gi-gdk3 GI.Gdk.Structs.Point

    No documentation available.

  8. data PreDeletePositions (a :: [Nat]) (b :: [Nat])

    harpie Harpie.Shape

    Convert a list of positions that reference deletions according to a final shape to 1 that references deletions relative to an initial shape. To delete the positions [1,2,5] from a list, for example, you need to delete position 1, (arriving at a 4 element list), then position 1, arriving at a 3 element list, and finally position 3.

    >>> :k! Eval (PreDeletePositions [1,2,5])
    ...
    = [1, 1, 3]
    
    >>> :k! Eval (PreDeletePositions [1,2,0])
    ...
    = [1, 1, 0]
    

  9. data PreInsertPositions (a :: [Nat]) (b :: [Nat])

    harpie Harpie.Shape

    Convert a list of position that reference insertions according to a final shape to 1 that references list insertions relative to an initial shape. To insert into positions [1,2,0] from a list, starting from a 2 element list, for example, you need to insert at position 0, (arriving at a 3 element list), then position 1, arriving at a 4 element list, and finally position 0.

    preInsertPositions == reverse . preDeletePositions . reverse
    >> :k! Eval (PreInsertPositions [1,2,5])
    
    ... = [1, 2, 5]
    >>> :k! Eval (PreInsertPositions [1,2,0])
    ...
    = [0, 1, 0]
    

  10. data Pos

    haskell-lexer Language.Haskell.Lexer

    The posisiotn within a file.

Page 625 of many | Previous | Next