Open mpizenberg opened 4 years ago
Instead of having listVersions : String -> List Version we could have listVersions : String -> Maybe (List Version) showing that a package may not exist. We could add the NoPackage kind of an incompatibility, which would hold the term any.
listVersions : String -> List Version
listVersions : String -> Maybe (List Version)
NoPackage
any
Instead of having
listVersions : String -> List Version
we could havelistVersions : String -> Maybe (List Version)
showing that a package may not exist. We could add theNoPackage
kind of an incompatibility, which would hold the termany
.