mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
bugfix: forgot to exporte {Set.Map}.OrderedType in Containers
This commit is contained in:
parent
d946b8a159
commit
24d9213cae
1 changed files with 8 additions and 2 deletions
|
|
@ -79,7 +79,10 @@ module List = struct
|
|||
include List
|
||||
include CCList
|
||||
end
|
||||
module Map = CCMap
|
||||
module Map = struct
|
||||
module type OrderedType = Map.OrderedType
|
||||
include CCMap
|
||||
end
|
||||
module Option = CCOpt
|
||||
module Pair = CCPair
|
||||
module Random = struct
|
||||
|
|
@ -87,7 +90,10 @@ module Random = struct
|
|||
include CCRandom
|
||||
end
|
||||
module Ref = CCRef
|
||||
module Set = CCSet
|
||||
module Set = struct
|
||||
module type OrderedType = Set.OrderedType
|
||||
include CCSet
|
||||
end
|
||||
module String = struct
|
||||
include String
|
||||
include CCString
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue