CurryInfo: base-3.4.0 / Prelude.<$>

definition: Info
 
(<$>) :: Functor f => (a -> b) -> f a -> f b
(<$>) = fmap
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Apply a function of type `(a -> b)`, given as the left argument,
to a value of type `f a`, where `f` is a functor,
to get a value of type `f b`.
Basically, this is an infix operator version of `fmap`.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 infixl
iotype: Info
 {(_) |-> _}
name: Info
 <$>
precedence: Info
 4
result-values: Info
 _
signature: Info
 Functor c => (a -> b) -> c a -> c b
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms