definition:
|
lookupSource :: LookupSet -> Package -> Maybe LookupSource
lookupSource ls p = case findEntry ls p of
Nothing -> Nothing
Just (s, _) -> Just s
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Finds the source for a package in the lookup set
---
--- @param ls the lookup set
--- @param p the package to search for
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {Just,Nothing}}
|
name:
|
lookupSource
|
precedence:
|
no precedence defined
|
result-values:
|
{Just,Nothing}
|
signature:
|
LookupSet -> CPM.Package.Package -> Prelude.Maybe LookupSource
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|