Help | Examples | About | API | Blog | Hackage | Haskell
Concurrently search more than 4911 packages and more than 442752 functions! (Index generated: Mon, 22 Apr 2013 08:31:44 UTC )
Found 119 functions, 0 packages and 32 completions.
Data.Ratio.(%):: a -> a -> Ratio a
base

Forms the ratio of two integral numbers.

Source
Ratio.(%):: a -> a -> Ratio a
haskell98

Forms the ratio of two integral numbers.

Data.Accessor.(%:):: T r a -> (a -> a) -> StateT r m ()
data-accessor

Infix variant of modify.

Source
Data.Accessor.(%=):: T r a -> a -> StateT r m ()
data-accessor

Infix variant of set.

Source
Algebra.DimensionTerm.(%/%):: (%/%)
numeric-prelude
No description.
Algebra.DimensionTerm.(%*%):: (%*%)
numeric-prelude
No description.
Number.Ratio.(%):: a -> a -> T a
numeric-prelude
No description.
Source
NumericPrelude.Numeric.(%):: a -> a -> T a
numeric-prelude
No description.
Source
Control.Lens.Lens.(%%@=):: IndexedLensLike i ((,) r) s s a b -> (i -> a -> (r, b)) -> m r
lens

Adjust the target of an IndexedLens returning a supplementary result, or adjust all of the targets of an IndexedTraversal within the current state, and return a monoidal summary of the supplementary results.

l %%@= f a state (l %%@~ f)
 (%%@=) :: MonadState s m                 => IndexedLens i s s a b      -> (i -> a -> (r, b)) -> s -> m r
 (%%@=) :: (MonadState s m, Monoid r) => IndexedTraversal i s s a b -> (i -> a -> (r, b)) -> s -> m r
Source
Control.Lens.Lens.(%%@~):: IndexedLensLike i f s t a b -> (i -> a -> f b) -> s -> f t
lens

Adjust the target of an IndexedLens returning a supplementary result, or adjust all of the targets of an IndexedTraversal and return a monoidal summary of the supplementary results and the answer.

(%%@~) a withIndex
 (%%@~) :: Functor f => IndexedLens i s t a b      -> (i -> a -> f b) -> s -> f t
 (%%@~) :: Applicative f => IndexedTraversal i s t a b -> (i -> a -> f b) -> s -> f t

In particular, it is often useful to think of this function as having one of these even more restricted type signatures:

 (%%@~) ::             IndexedLens i s t a b      -> (i -> a -> (r, b)) -> s -> (r, t)
 (%%@~) :: Monoid r => IndexedTraversal i s t a b -> (i -> a -> (r, b)) -> s -> (r, t)
Source
Powered by Haskell, HXT, Snap, and
Please send any feedback to hayoo@holumbus.org