Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

  1. fastMostGeneralVariation :: Expr -> Expr

    express Data.Express

    A faster version of mostGeneralCanonicalVariation that disregards name clashes across different types. Consider using mostGeneralCanonicalVariation instead. The same caveats of fastCanonicalVariations do apply here.

  2. fastMostSpecificVariation :: Expr -> Expr

    express Data.Express

    A faster version of mostSpecificCanonicalVariation that disregards name clashes across different types. Consider using mostSpecificCanonicalVariation instead. The same caveats of fastCanonicalVariations do apply here.

  3. fastMostGeneralVariation :: Expr -> Expr

    express Data.Express.Canon

    A faster version of mostGeneralCanonicalVariation that disregards name clashes across different types. Consider using mostGeneralCanonicalVariation instead. The same caveats of fastCanonicalVariations do apply here.

  4. fastMostSpecificVariation :: Expr -> Expr

    express Data.Express.Canon

    A faster version of mostSpecificCanonicalVariation that disregards name clashes across different types. Consider using mostSpecificCanonicalVariation instead. The same caveats of fastCanonicalVariations do apply here.

  5. gconstmap :: (Generic1 f, Functor (Rep1 f)) => a -> f b -> f a

    generic-data Generic.Data

    Generic (<$). See also gfmap.

  6. gconstmap :: (Generic1 f, Functor (Rep1 f)) => a -> f b -> f a

    generic-data Generic.Data.Internal.Prelude

    Generic (<$). See also gfmap.

  7. eventRequestMotions :: (HasCallStack, MonadIO m) => EventMotion -> m ()

    gi-gdk3 GI.Gdk.Unions.Event

    Request more motion notifies if event is a motion notify hint event. This function should be used instead of windowGetPointer to request further motion notifies, because it also works for extension events where motion notifies are provided for devices other than the core pointer. Coordinate extraction, processing and requesting more motion events from a EventTypeMotionNotify event usually works like this:

    C code

    {
    // motion_event handler
    x = motion_event->x;
    y = motion_event->y;
    // handle (x,y) motion
    gdk_event_request_motions (motion_event); // handles is_hint events
    }
    
    Since: 2.12

  8. adjustMax :: (a -> a) -> NEIntMap a -> NEIntMap a

    nonempty-containers Data.IntMap.NonEmpty

    O(log n). A version of updateMax that disallows deletion, allowing us to guarantee that the result is also non-empty.

  9. adjustMaxWithKey :: (Key -> a -> a) -> NEIntMap a -> NEIntMap a

    nonempty-containers Data.IntMap.NonEmpty

    O(log n). A version of updateMaxWithKey that disallows deletion, allowing us to guarantee that the result is also non-empty.

  10. adjustMin :: (a -> a) -> NEIntMap a -> NEIntMap a

    nonempty-containers Data.IntMap.NonEmpty

    O(1). A version of updateMin that disallows deletion, allowing us to guarantee that the result is also non-empty.

Page 84 of many | Previous | Next