Hoogle Search

Within LTS Haskell 24.18 (ghc-9.10.3)

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

  1. (.||.) :: OperatorContext c => Record c a -> Record c a -> Record c a

    relational-schemas Database.Custom.SQLite3

    Concatenate operator corresponding SQL || .

  2. (.|.) :: Bits a => a -> a -> a

    xmonad-contrib XMonad.Config.Prime

    Bitwise "or"

  3. (<.|.=) :: (MonadState s m, Bits a) => LensLike' ((,) a) s a -> a -> m a

    lens Data.Bits.Lens

    Modify the target(s) of a Lens', (or Traversal) by computing its bitwise .|. with another value, returning the result (or a monoidal summary of all of the results traversed).

    >>> runState (_1 <.|.= 7) (28,0)
    (31,(31,0))
    
    (<.|.=) :: (MonadState s m, Bits a)           => Lens' s a      -> a -> m a
    (<.|.=) :: (MonadState s m, Bits a, Monoid a) => Traversal' s a -> a -> m a
    

  4. (<.|.~) :: Bits a => LensLike ((,) a) s t a a -> a -> s -> (a, t)

    lens Data.Bits.Lens

    Bitwise .|. the target(s) of a Lens (or Traversal), returning the result (or a monoidal summary of all of the results).

    >>> _2 <.|.~ 6 $ ("hello",3)
    (7,("hello",7))
    
    (<.|.~) :: Bits a             => Iso s t a a       -> a -> s -> (a, t)
    (<.|.~) :: Bits a             => Lens s t a a      -> a -> s -> (a, t)
    (<.|.~) :: (Bits a, Monoid a) => Traversal s t a a -> a -> s -> (a, t)
    

  5. (<<.|.=) :: (MonadState s m, Bits a) => LensLike' ((,) a) s a -> a -> m a

    lens Data.Bits.Lens

    Modify the target(s) of a Lens', (or Traversal') by computing its bitwise .|. with another value, returning the original value (or a monoidal summary of all the original values). When you do not need the old value, (.|.=) is more flexible.

    >>> runState (_1 <<.|.= 7) (28,0)
    (28,(31,0))
    
    (<<.|.=) :: (MonadState s m, Bits a)           => Lens' s a      -> a -> m a
    (<<.|.=) :: (MonadState s m, Bits a, Monoid a) => Traversal' s a -> a -> m a
    

  6. (<<.|.~) :: Bits a => Optical' (->) q ((,) a) s a -> a -> q s (a, s)

    lens Data.Bits.Lens

    Bitwise .|. the target(s) of a Lens or Traversal, and return the original value, or a monoidal summary of the original values. When you do not need the old value, (.|.~) is more flexible.

    >>> _2 <<.|.~ 6 $ ("hello", 3)
    (3,("hello",7))
    
    (<<.|.~) ::  Bits a            => Iso s t a a       -> a -> s -> (a, t)
    (<<.|.~) ::  Bits a            => Lens s t a a      -> a -> s -> (a, t)
    (<<.|.~) :: (Bits a, Monoid a) => Traversal s t a a -> a -> s -> (a, t)
    

  7. (|.|) :: ExpQ -> ExpQ -> ExpQ

    haskell-src-meta Language.Haskell.Meta.Utils

    No documentation available.

  8. (|.|) :: Space s => Element s -> s -> Bool

    numhask-space NumHask.Space

    is an element in the space

  9. (|.|) :: Pred -> Pred -> Pred

    liquid-fixpoint Language.Fixpoint.Types.Refinements

    No documentation available.

  10. (|.-.|) :: forall (d1 :: [Factor Type]) (d2 :: [Factor Type]) f a (l :: LCSU Type) . (d1 @~ d2, Affine f, Num a) => Qu d1 l (f a) -> Qu d2 l (f a) -> Qu d1 l (Diff f a)

    units Data.Metrology.Linear

    Subtract point quantities.

Page 8 of many | Previous | Next