mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-09 04:35:29 -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
|
||||
| Node of ('a,'b) tree * 'a * 'b * ('a,'b) tree * int
|
||||
|
||||
type ('a,'b) t =
|
||||
{ cmp: 'a comparator;
|
||||
t: ('a,'b) tree }
|
||||
type ('a,'b) t = {
|
||||
cmp: 'a comparator;
|
||||
t: ('a,'b) tree
|
||||
}
|
||||
|
||||
let empty ~cmp = { cmp; t=Empty }
|
||||
|
||||
|
|
|
|||
|
|
@ -32,9 +32,10 @@ type ('a,'b) tree = private
|
|||
| Empty
|
||||
| Node of ('a,'b) tree * 'a * 'b * ('a,'b) tree * int
|
||||
|
||||
type ('a,'b) t = private
|
||||
{ cmp: 'a comparator;
|
||||
t: ('a,'b) tree }
|
||||
type ('a,'b) t = private {
|
||||
cmp: 'a comparator;
|
||||
t: ('a,'b) tree
|
||||
}
|
||||
|
||||
val empty : cmp:'a comparator -> ('a,'b) t
|
||||
(** Empty tree *)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue