findM package:ghc

Takes a ModuleName and possibly a UnitId, and consults the filesystem and package database to find the corresponding Module, using the algorithm that is used for an import declaration.
The maximal key of the map. Calls error if the map is empty. Use maxViewWithKey if the map may be empty.
The minimal key of the map. Calls error if the map is empty. Use minViewWithKey if the map may be empty.
The maximal element of a set.
The minimal element of the set.
Delete and find the maximal element. This function throws an error if the map is empty. Use maxViewWithKey if the map may be empty.
Delete and find the minimal element. This function throws an error if the map is empty. Use minViewWithKey if the map may be empty.
Delete and find the maximal element.
deleteFindMax set = (findMax set, deleteMax set)
Delete and find the minimal element.
deleteFindMin set = (findMin set, deleteMin set)