Library
Module
Module type
Parameter
Class
Class type
Parameters
module Mon : sig ... end
module C : BaseCollectionM
Signature
include BaseCollectionM with type 'a m = (Mon.t * 'a) C.m
difference p xs ys
removes all elements from xs
which are less than or equal to some element in ys
, according to the partial order p
.
difference p xs ys
removes all elements from xs
which are less than or equal to some element in ys
, according to the partial order p
.
unique eq xs
removes duplicates according to the function cmp
.
maxima p xs
leaves only the maximal elements according to the partial order p
.
nub p xs ys
is the same as maxima, but some values might be treated as greater than others depending on their position in the collection.
For instance, with lists, we treat elements that occur earlier in the list as always greater than elements that occur later, otherwise we use p
. This is really just an optimisation: in order to retrieve any value from maxima p
xs
, the maxima
function will have had to seen every value. Not so with nub
.
cmp_on p
is the usual product of the ordering on 'a
with the ordering on W.t
.