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.

  1. (.#) :: Coercible b a => (b -> c) -> (a -> b) -> a -> c

    microlens Lens.Micro.Internal

    No documentation available.

  2. (.#) :: forall a b c q . (Profunctor p, Coercible b a) => p b c -> q a b -> p a c

    profunctors Data.Profunctor.Unsafe

    Strictly map the first argument argument contravariantly with a function that is assumed operationally to be a cast, such as a newtype constructor. Note: This operation is explicitly unsafe since an implementation may choose to use unsafeCoerce to implement this combinator and it has no way to validate that your function meets the requirements. If you implement this combinator with unsafeCoerce, then you are taking upon yourself the obligation that you don't use GADT-like tricks to distinguish values. If you import Data.Profunctor.Unsafe you are taking upon yourself the obligation that you will only call this with a second argument that is operationally identity.

    (.#) ≡ \p -> p `seq` \f -> lmap coerce p
    

  3. (.>>) :: Biapply p => p a b -> p c d -> p c d

    semigroupoids Data.Bifunctor.Apply

    a .> b ≡ const id <$> a <.> b
    

  4. (.>) :: Apply f => f a -> f b -> f b

    semigroupoids Data.Functor.Apply

    a .> b = const id <$> a <.> b
    

  5. (.>) :: Apply f => f a -> f b -> f b

    semigroupoids Data.Functor.Bind

    a .> b = const id <$> a <.> b
    

  6. (.>) :: Apply f => f a -> f b -> f b

    semigroupoids Data.Functor.Bind.Class

    a .> b = const id <$> a <.> b
    

  7. (.>>) :: Biapply p => p a b -> p c d -> p c d

    semigroupoids Data.Functor.Bind.Class

    a .> b ≡ const id <$> a <.> b
    

  8. (.<<.) :: Bits a => a -> Int -> a

    base-compat Data.Bits.Compat

    Infix version of shiftL.

  9. (.>>.) :: Bits a => a -> Int -> a

    base-compat Data.Bits.Compat

    Infix version of shiftR.

  10. (.^.) :: Bits a => a -> a -> a

    base-compat Data.Bits.Compat

    Infix version of xor.

Page 11 of many | Previous | Next