Hoogle Search
Within LTS Haskell 24.10 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
flipFlopHysteresis :: Ord y => (y, y) -> BinaryLevel -> T y BinaryLevelsynthesizer-core Synthesizer.Causal.Analysis No documentation available.
-
synthesizer-core Synthesizer.Generic.Analysis Detect thresholds with a hysteresis.
flipFlopHysteresis :: Ord y => (y, y) -> BinaryLevel -> T y -> T BinaryLevelsynthesizer-core Synthesizer.Plain.Analysis Detect thresholds with a hysteresis.
flipFlopHysteresisStep :: Ord a => (a, a) -> BinaryLevel -> a -> BinaryLevelsynthesizer-core Synthesizer.Plain.Analysis No documentation available.
flipFlopHysteresis :: Ord y => (y, y) -> BinaryLevel -> T y -> T BinaryLevelsynthesizer-core Synthesizer.State.Analysis Detect thresholds with a hysteresis.
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]
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]
-
chart-svg Chart.Hud Flip Place to the opposite side, or negate if PlaceAbsolute.
>>> flipPlace PlaceLeft PlaceRight
-
chart-svg Chart.Primitive Flip Place to the opposite side, or negate if PlaceAbsolute.
>>> flipPlace PlaceLeft PlaceRight
flipVector :: Num a => Point a -> Point acubicbezier Geom2D reflect the vector over the X-axis.