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.
-
gi-gdk3 GI.Gdk.Enums the new data replaces the existing data.
-
gi-gdk3 GI.Gdk.Enums Specifies the type of a property change for a EventProperty.
PropertyStateDelete :: PropertyStategi-gdk3 GI.Gdk.Enums the property was deleted.
PropertyStateNewValue :: PropertyStategi-gdk3 GI.Gdk.Enums the property value was changed.
-
Defines the x and y coordinates of a point.
-
gi-gdk3 GI.Gdk.Structs.Point Memory-managed wrapper type.
Point :: ManagedPtr Point -> Pointgi-gdk3 GI.Gdk.Structs.Point No documentation available.
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]
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]
-
haskell-lexer Language.Haskell.Lexer The posisiotn within a file.