To focus the search input from anywhere on the page, press the 'S' key.
in-package search v0.1.0
Library
Module
Module type
Parameter
Class
Class type
Parameters
module C : BaseCollectionM
Signature
include BaseCollectionM with type 'a m = 'a option 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
.
include BaseLazyPlus with type 'a m = 'a option C.m
include BatInterfaces.Monad with type 'a m = 'a option C.m
type 'a m = 'a option C.m
The type of a monad producing values of type 'a
.
val zero : unit -> 'a m
val null : 'a m -> bool
null x implies that x is zero. If you do not want to or cannot answer whether a given x is zero, then null x should be false.
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 a partial order satisfying: None = None
None < Some _
Some x < Some y <=> x < y