Hoogle Search
Within LTS Haskell 24.20 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
./=. ) :: (Eq a, Applicative f) => f a -> f a -> f Boolclash-prelude Clash.Signal.Internal The above type is a generalization for:
(./=.) :: Eq a => Signal a -> Signal a -> Signal Bool
It is a version of (/=) that returns a Signal of Bool(
.<. ) :: (Ord a, Applicative f) => f a -> f a -> f Boolclash-prelude Clash.Signal.Internal The above type is a generalization for:
(.<.) :: Ord a => Signal a -> Signal a -> Signal Bool
It is a version of (<) that returns a Signal of Bool(
.<=. ) :: (Ord a, Applicative f) => f a -> f a -> f Boolclash-prelude Clash.Signal.Internal The above type is a generalization for:
(.<=.) :: Ord a => Signal a -> Signal a -> Signal Bool
It is a version of (<=) that returns a Signal of Bool(
.==. ) :: (Eq a, Applicative f) => f a -> f a -> f Boolclash-prelude Clash.Signal.Internal The above type is a generalization for:
(.==.) :: Eq a => Signal a -> Signal a -> Signal Bool
It is a version of (==) that returns a Signal of Bool(
.>. ) :: (Ord a, Applicative f) => f a -> f a -> f Boolclash-prelude Clash.Signal.Internal The above type is a generalization for:
(.>.) :: Ord a => Signal a -> Signal a -> Signal Bool
It is a version of (>) that returns a Signal of Bool(
.>=. ) :: (Ord a, Applicative f) => f a -> f a -> f Boolclash-prelude Clash.Signal.Internal The above type is a generalization for:
(.>=.) :: Ord a => Signal a -> Signal a -> Signal Bool
It is a version of (>=) that returns a Signal of Bool(
.||. ) :: Applicative f => f Bool -> f Bool -> f Boolclash-prelude Clash.Signal.Internal The above type is a generalization for:
(.||.) :: Signal Bool -> Signal Bool -> Signal Bool
It is a version of (||) that returns a Signal of Bool(
.<<+ ) :: forall (n :: Nat) . KnownNat n => BitVector n -> Bit -> BitVector nclash-prelude Clash.Sized.BitVector Shift in a bit from the LSB side of a BitVector. Equal to left shifting the BitVector by one and replacing the LSB with the bit to be shifted in.
>>> 0b1111_0000 .<<+ 0 :: BitVector 8 0b1110_0000 >>> 0b1111_0000 .<<+ 1 :: BitVector 8 0b1110_0001
-
coinor-clp Numeric.COINOR.CLP No documentation available.
(
.*| ) :: (C sh, Floating a) => a -> Vector sh a -> Vector sh acomfort-blas Numeric.BLAS.Vector forVector number_ $ \xs -> Vector.negate xs == Vector.scale minusOne xs
forVector number_ $ \xs -> Vector.scale 2 xs == xs |+| xs