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.
-
xmonad-contrib XMonad.Layout.LayoutCombinators No documentation available.
-
xmonad-contrib XMonad.Layout.LayoutCombinators No documentation available.
-
xmonad-contrib XMonad.Layout.LayoutCombinators No documentation available.
-
xmonad-contrib XMonad.Layout.LayoutCombinators No documentation available.
-
xmonad-contrib XMonad.Layout.LayoutCombinators No documentation available.
-
xmonad-contrib XMonad.Layout.LayoutCombinators No documentation available.
(
<**> ) :: Applicative f => f a -> f (a -> b) -> f bbase 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]}(
<**> ) :: Applicative f => f a -> f (a -> b) -> f bbase 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]}(
<**= ) :: (MonadState s m, Floating a) => LensLike' ((,) a) s a -> a -> m alens 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
(
<**~ ) :: 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)