Hoogle Search

Within LTS Haskell 24.58 (ghc-9.10.3)

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

  1. (**//*) :: (Read a, Eq a, LayoutClass l1 a, LayoutClass l2 a) => l1 a -> l2 a -> CombineTwo (DragPane ()) l1 l2 a

    xmonad-contrib XMonad.Layout.LayoutCombinators

    No documentation available.

  2. (**//***) :: (Read a, Eq a, LayoutClass l1 a, LayoutClass l2 a) => l1 a -> l2 a -> CombineTwo (DragPane ()) l1 l2 a

    xmonad-contrib XMonad.Layout.LayoutCombinators

    No documentation available.

  3. (**|*) :: (Read a, Eq a, LayoutClass l1 a, LayoutClass l2 a) => l1 a -> l2 a -> CombineTwo (Tall ()) l1 l2 a

    xmonad-contrib XMonad.Layout.LayoutCombinators

    No documentation available.

  4. (**|***) :: (Read a, Eq a, LayoutClass l1 a, LayoutClass l2 a) => l1 a -> l2 a -> CombineTwo (Tall ()) l1 l2 a

    xmonad-contrib XMonad.Layout.LayoutCombinators

    No documentation available.

  5. (**||*) :: (Read a, Eq a, LayoutClass l1 a, LayoutClass l2 a) => l1 a -> l2 a -> CombineTwo (DragPane ()) l1 l2 a

    xmonad-contrib XMonad.Layout.LayoutCombinators

    No documentation available.

  6. (**||***) :: (Read a, Eq a, LayoutClass l1 a, LayoutClass l2 a) => l1 a -> l2 a -> CombineTwo (DragPane ()) l1 l2 a

    xmonad-contrib XMonad.Layout.LayoutCombinators

    No documentation available.

  7. (<**>) :: Applicative f => f a -> f (a -> b) -> f b

    base Control.Applicative

    A variant of <*> with the types of the arguments reversed. It differs from flip (<*>) in that the effects are resolved in the order the arguments are presented.

    Examples

    >>> (<**>) (print 1) (id <$ print 2)
    1
    2
    
    >>> flip (<*>) (print 1) (id <$ print 2)
    2
    1
    
    >>> ZipList [4, 5, 6] <**> ZipList [(+1), (*2), (/3)]
    ZipList {getZipList = [5.0,10.0,2.0]}
    

  8. (<**>) :: Applicative f => f a -> f (a -> b) -> f b

    base GHC.Base

    A variant of <*> with the types of the arguments reversed. It differs from flip (<*>) in that the effects are resolved in the order the arguments are presented.

    Examples

    >>> (<**>) (print 1) (id <$ print 2)
    1
    2
    
    >>> flip (<*>) (print 1) (id <$ print 2)
    2
    1
    
    >>> ZipList [4, 5, 6] <**> ZipList [(+1), (*2), (/3)]
    ZipList {getZipList = [5.0,10.0,2.0]}
    

  9. (<**=) :: (MonadState s m, Floating a) => LensLike' ((,) a) s a -> a -> m a

    lens Control.Lens.Lens

    Raise the target of a floating-point valued Lens into your Monad's state to an arbitrary power and return the result. When you do not need the result of the operation, (**=) is more flexible.

    (<**=) :: (MonadState s m, Floating a) => Lens' s a -> a -> m a
    (<**=) :: (MonadState s m, Floating a) => Iso' s a -> a -> m a
    

  10. (<**~) :: Floating a => LensLike ((,) a) s t a a -> a -> s -> (a, t)

    lens Control.Lens.Lens

    Raise the target of a floating-point valued Lens to an arbitrary power and return the result. When you do not need the result of the operation, (**~) is more flexible.

    (<**~) :: Floating a => Lens' s a -> a -> s -> (a, s)
    (<**~) :: Floating a => Iso' s a  -> a -> s -> (a, s)
    

Page 13 of many | Previous | Next