Hoogle Search

Within LTS Haskell 24.18 (ghc-9.10.3)

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

  1. AnchorHintsFlipX :: AnchorHints

    gi-gdk4 GI.Gdk.Flags

    allow flipping anchors horizontally

  2. AnchorHintsFlipY :: AnchorHints

    gi-gdk4 GI.Gdk.Flags

    allow flipping anchors vertically

  3. runFlip :: Flip (b :: k -> k1 -> Type) (l :: k1) (r :: k) -> b r l

    barbies Barbies.Bi

    No documentation available.

  4. unsafeFlipBit :: PrimMonad m => MVector (PrimState m) Bit -> Int -> m ()

    bitvec Data.Bit

    Flip the bit at the given position. No bound checks are performed. Equivalent to flip unsafeModify complement, but up to 2x faster. In general there is no reason to unsafeModify bit vectors: either you modify it with id (which is id altogether) or with complement (which is unsafeFlipBit).

    >>> :set -XOverloadedLists
    
    >>> Data.Vector.Unboxed.modify (`unsafeFlipBit` 2) [1,1,1,1]
    [1,1,0,1]
    

  5. unsafeFlipBit :: PrimMonad m => MVector (PrimState m) Bit -> Int -> m ()

    bitvec Data.Bit.ThreadSafe

    Flip the bit at the given position. No bound checks are performed. Equivalent to flip unsafeModify complement, but up to 33% faster and atomic. In general there is no reason to unsafeModify bit vectors: either you modify it with id (which is id altogether) or with complement (which is unsafeFlipBit).

    >>> Data.Vector.Unboxed.modify (\v -> unsafeFlipBit v 1) (read "[1,1,1]")
    [1,0,1]
    

  6. staticFlip :: Static (a -> b -> c) -> Static (b -> a -> c)

    distributed-static Control.Distributed.Static

    Static version of flip

  7. consFlip :: (Amplitude sample0 -> (Amplitude sample1, T (Displacement sample0) (Displacement sample1))) -> T s sample0 sample1

    synthesizer-dimensional Synthesizer.Dimensional.Causal.Process

    No documentation available.

  8. consFlip :: (Amplitude sample0 -> (Amplitude sample1, Displacement sample0 -> Displacement sample1)) -> T sample0 sample1

    synthesizer-dimensional Synthesizer.Dimensional.Map

    No documentation available.

  9. _trFlipH :: Transform2D -> Bool

    xlsx Codec.Xlsx.Types.Drawing.Common

    Specifies a horizontal flip. When true, this attribute defines that the shape is flipped horizontally about the center of its bounding box.

  10. _trFlipV :: Transform2D -> Bool

    xlsx Codec.Xlsx.Types.Drawing.Common

    Specifies a vertical flip. When true, this attribute defines that the shape is flipped vetically about the center of its bounding box.

Page 20 of many | Previous | Next