mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-10 21:23:57 -05:00
remove ugly tabs
This commit is contained in:
parent
9a10d477ee
commit
3127f046de
2 changed files with 8 additions and 6 deletions
|
|
@ -34,9 +34,10 @@ type ('a,'b) tree =
|
||||||
| Empty
|
| Empty
|
||||||
| Node of ('a,'b) tree * 'a * 'b * ('a,'b) tree * int
|
| Node of ('a,'b) tree * 'a * 'b * ('a,'b) tree * int
|
||||||
|
|
||||||
type ('a,'b) t =
|
type ('a,'b) t = {
|
||||||
{ cmp: 'a comparator;
|
cmp: 'a comparator;
|
||||||
t: ('a,'b) tree }
|
t: ('a,'b) tree
|
||||||
|
}
|
||||||
|
|
||||||
let empty ~cmp = { cmp; t=Empty }
|
let empty ~cmp = { cmp; t=Empty }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,9 +32,10 @@ type ('a,'b) tree = private
|
||||||
| Empty
|
| Empty
|
||||||
| Node of ('a,'b) tree * 'a * 'b * ('a,'b) tree * int
|
| Node of ('a,'b) tree * 'a * 'b * ('a,'b) tree * int
|
||||||
|
|
||||||
type ('a,'b) t = private
|
type ('a,'b) t = private {
|
||||||
{ cmp: 'a comparator;
|
cmp: 'a comparator;
|
||||||
t: ('a,'b) tree }
|
t: ('a,'b) tree
|
||||||
|
}
|
||||||
|
|
||||||
val empty : cmp:'a comparator -> ('a,'b) t
|
val empty : cmp:'a comparator -> ('a,'b) t
|
||||||
(** Empty tree *)
|
(** Empty tree *)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue