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.
-
reflex Reflex.Requester.Base.Internal No documentation available.
WindowLostMouseFocusEvent :: WindowLostMouseFocusEventData -> EventPayloadsdl2 SDL.Event No documentation available.
newtype
WindowLostMouseFocusEventData sdl2 SDL.Event The window has lost mouse focus.
WindowLostMouseFocusEventData :: Window -> WindowLostMouseFocusEventDatasdl2 SDL.Event No documentation available.
windowLostMouseFocusEventWindow :: WindowLostMouseFocusEventData -> Windowsdl2 SDL.Event The associated Window.
rwFromConstMem :: MonadIO m => Ptr () -> CInt -> m (Ptr RWops)sdl2 SDL.Raw.Filesystem No documentation available.
-
brick Brick.Widgets.List Apply a function to the selected element. If no element is selected the list is not modified. Complexity: same as traverse for the container type (typically O(n)). Complexity: same as listSelectedElementL for the list's container type.
listModify for List: O(n) listModify for Seq: O(log(min(i, n - i)))
-
brick Brick.Widgets.List Move the list selected index. If the current selection is Just x, the selection is adjusted by the specified amount. The value is clamped to the extents of the list (i.e. the selection does not "wrap"). If the current selection is Nothing (i.e. there is no selection) and the direction is positive, set to Just 0 (first element), otherwise set to Just (length - 1) (last element). Complexity: same as splitAt for the container type.
listMoveBy for List: O(1) listMoveBy for Seq: O(log(min(i,n-i)))
-
brick Brick.Widgets.List Move the list selected index by some (fractional) number of pages.
-
brick Brick.Widgets.List Move the list selected index down by one. (Moves the cursor down, adds one to the index.)