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.

  1. (./=.) :: (Eq a, Applicative f) => f a -> f a -> f Bool

    clash-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

  2. (.<.) :: (Ord a, Applicative f) => f a -> f a -> f Bool

    clash-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

  3. (.<=.) :: (Ord a, Applicative f) => f a -> f a -> f Bool

    clash-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

  4. (.==.) :: (Eq a, Applicative f) => f a -> f a -> f Bool

    clash-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

  5. (.>.) :: (Ord a, Applicative f) => f a -> f a -> f Bool

    clash-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

  6. (.>=.) :: (Ord a, Applicative f) => f a -> f a -> f Bool

    clash-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

  7. (.||.) :: Applicative f => f Bool -> f Bool -> f Bool

    clash-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

  8. (.<<+) :: forall (n :: Nat) . KnownNat n => BitVector n -> Bit -> BitVector n

    clash-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
    

  9. (.*) :: a -> ix -> Term a ix

    coinor-clp Numeric.COINOR.CLP

    No documentation available.

  10. (.*|) :: (C sh, Floating a) => a -> Vector sh a -> Vector sh a

    comfort-blas Numeric.BLAS.Vector

    forVector number_ $ \xs -> Vector.negate xs == Vector.scale minusOne xs
    
    forVector number_ $ \xs -> Vector.scale 2 xs == xs |+| xs
    

Page 55 of many | Previous | Next