tablecloth-base
Set.Int
Construct sets of Ints
Int
type nonrec t = Of(Tablecloth__.TableclothInt).t
val empty : t
A set with nothing in it.
val singleton : int -> t
Create a set from a single Int
Examples
Set.Int.singleton 5 |> Set.to_list = [5]
val from_array : int array -> t
Create a set from an Array
Array
Set.Int.from_array [|1;2;3;3;2;1;7|] |> Set.to_array = [|1;2;3;7|]
val from_list : int list -> t
Create a set from a List
List
Set.Int.from_list [1;2;3;3;2;1;7] |> Set.to_list = [1;2;3;7]