• About
  • Snapshots
  • LTS
  • Nightly
  • FAQ
  • Blog

Hoogle Search

Within LTS Haskell 24.5 (ghc-9.10.2)

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

  1. (.~) :: ASetter s t a b -> b -> s -> t

    microlens Lens.Micro

    (.~) assigns a value to the target. It's the same thing as using (%~) with const:

    l .~ x = l %~ const x
    
    See set if you want a non-operator synonym. Here it is used to change 2 fields of a 3-tuple:
    >>> (0,0,0) & _1 .~ 1 & _3 .~ 3
    (1,0,3)
    

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

    microlens Lens.Micro.Internal

    No documentation available.

  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

Stackage is a service provided by the Haskell Foundation │ Originally developed by FP Complete