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. castMyTagWrap :: forall (f :: Type -> Type) x (g :: Type -> Type) . MyTagWrap f (Entry f x) -> MyTagWrap g (Entry g x)

    reflex Reflex.Requester.Base.Internal

    No documentation available.

  2. WindowLostMouseFocusEvent :: WindowLostMouseFocusEventData -> EventPayload

    sdl2 SDL.Event

    No documentation available.

  3. newtype WindowLostMouseFocusEventData

    sdl2 SDL.Event

    The window has lost mouse focus.

  4. WindowLostMouseFocusEventData :: Window -> WindowLostMouseFocusEventData

    sdl2 SDL.Event

    No documentation available.

  5. windowLostMouseFocusEventWindow :: WindowLostMouseFocusEventData -> Window

    sdl2 SDL.Event

    The associated Window.

  6. rwFromConstMem :: MonadIO m => Ptr () -> CInt -> m (Ptr RWops)

    sdl2 SDL.Raw.Filesystem

    No documentation available.

  7. listModify :: forall (t :: Type -> Type) e n . (Traversable t, Splittable t, Semigroup (t e)) => (e -> e) -> GenericList n t e -> GenericList n t e

    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)))
    

  8. listMoveBy :: forall (t :: Type -> Type) n e . (Foldable t, Splittable t) => Int -> GenericList n t e -> GenericList n t e

    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)))
    

  9. listMoveByPages :: forall (t :: Type -> Type) n m e . (Foldable t, Splittable t, Ord n, RealFrac m) => m -> EventM n (GenericList n t e) ()

    brick Brick.Widgets.List

    Move the list selected index by some (fractional) number of pages.

  10. listMoveDown :: forall (t :: Type -> Type) n e . (Foldable t, Splittable t) => GenericList n t e -> GenericList n t e

    brick Brick.Widgets.List

    Move the list selected index down by one. (Moves the cursor down, adds one to the index.)

Page 61 of many | Previous | Next