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. (.|) :: Expr -> Expr -> Expr

    language-c99-simple Language.C99.Simple.Expr

    No documentation available.

  2. (.|) :: Logger -> Logger -> Logger

    xmonad-contrib XMonad.Util.Loggers

    An infix operator for logDefault, which can be more convenient to combine multiple loggers.

    logTitle .| logWhenActive 0 (logConst "*") .| logConst "There's nothing here"
    

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

    base Data.Bits

    Bitwise "or"

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

    base GHC.Bits

    Bitwise "or"

  5. (.||.) :: (Testable prop1, Testable prop2) => prop1 -> prop2 -> Property

    QuickCheck Test.QuickCheck

    Disjunction: p1 .||. p2 passes unless p1 and p2 simultaneously fail.

  6. (.||.) :: (Testable prop1, Testable prop2) => prop1 -> prop2 -> Property

    tasty-quickcheck Test.Tasty.QuickCheck

    Disjunction: p1 .||. p2 passes unless p1 and p2 simultaneously fail.

  7. (.|.=) :: (MonadState s m, Bits a) => ASetter' s a -> a -> m ()

    lens Data.Bits.Lens

    Modify the target(s) of a Lens', Setter or Traversal by computing its bitwise .|. with another value.

    >>> execState (do _1 .|.= 15; _2 .|.= 3) (7,7)
    (15,7)
    
    (.|.=) :: (MonadState s m, Bits a) => Setter' s a    -> a -> m ()
    (.|.=) :: (MonadState s m, Bits a) => Iso' s a       -> a -> m ()
    (.|.=) :: (MonadState s m, Bits a) => Lens' s a      -> a -> m ()
    (.|.=) :: (MonadState s m, Bits a) => Traversal' s a -> a -> m ()
    

  8. (.|.~) :: Bits a => ASetter s t a a -> a -> s -> t

    lens Data.Bits.Lens

    Bitwise .|. the target(s) of a Lens or Setter.

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

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

    ghc GHC.JS.Make

    JS infix bit operators

  10. (.||.) :: JStgExpr -> JStgExpr -> JStgExpr

    ghc GHC.JS.Make

    JS infix bit operators

Page 2 of many | Previous | Next