definition:
|
listPackages :: Repository -> [[Package]]
listPackages (Repository ps) =
map sortedByVersion (groupBy (\a b -> name a == name b) ps)
where
sortedByVersion = sortBy (\a b -> (version a) `vgt` (version b))
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Get all packages in the repository and group them by versions
--- (newest first).
---
--- @param cfg - the current CPM configuration
--- @param repo - the repository
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({Repository}) |-> {:,[]}}
|
name:
|
listPackages
|
precedence:
|
no precedence defined
|
result-values:
|
{:,[]}
|
signature:
|
Repository -> [[CPM.Package.Package]]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|