definition:
|
whenJust :: Maybe a -> (a -> Bool) -> Bool
whenJust (Just x) f = f x
whenJust Nothing _ = False
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- If just a value is given, the predicate is applied to the value. Otherwise, false is returned.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({Just},_) |-> _ || ({Nothing},_) |-> {False}}
|
name:
|
whenJust
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Maybe a -> (a -> Prelude.Bool) -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|