Hoogle Search

Within LTS Haskell 24.25 (ghc-9.10.3)

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

  1. flipFlopHysteresis :: Ord y => (y, y) -> BinaryLevel -> T y -> T BinaryLevel

    synthesizer-core Synthesizer.Plain.Analysis

    Detect thresholds with a hysteresis.

  2. flipFlopHysteresisStep :: Ord a => (a, a) -> BinaryLevel -> a -> BinaryLevel

    synthesizer-core Synthesizer.Plain.Analysis

    No documentation available.

  3. flipFlopHysteresis :: Ord y => (y, y) -> BinaryLevel -> T y -> T BinaryLevel

    synthesizer-core Synthesizer.State.Analysis

    Detect thresholds with a hysteresis.

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

    bitvec Data.Bit

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

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

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

    bitvec Data.Bit.ThreadSafe

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

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

  6. flipPlace :: Place -> Place

    chart-svg Chart.Hud

    Flip Place to the opposite side, or negate if PlaceAbsolute.

    >>> flipPlace PlaceLeft
    PlaceRight
    

  7. flipPlace :: Place -> Place

    chart-svg Chart.Primitive

    Flip Place to the opposite side, or negate if PlaceAbsolute.

    >>> flipPlace PlaceLeft
    PlaceRight
    

  8. flipVector :: Num a => Point a -> Point a

    cubicbezier Geom2D

    reflect the vector over the X-axis.

  9. flipLabels :: Tree e a -> Tree a e

    elynx-tree ELynx.Tree.Rooted

    Flip the branch and node lables.

  10. flipFlopHysteresis :: (Ord y, C y, C u) => (T u y, T u y) -> BinaryLevel -> SignalRateInd rate u y y -> T rate Abstract (T BinaryLevel)

    synthesizer-dimensional Synthesizer.Dimensional.Amplitude.Analysis

    Detect thresholds with a hysteresis.

Page 10 of many | Previous | Next