mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-07 11:45:31 -05:00
remove Floats/Ints/Bools modules
This commit is contained in:
parent
8ec4ba09ac
commit
00bcb47c4f
2 changed files with 1 additions and 6 deletions
|
|
@ -439,8 +439,6 @@ struct
|
|||
end
|
||||
|
||||
module Bytes = Make_array(Array.ByteArray)
|
||||
module Floats = Make_array(Array.FloatArray)
|
||||
module Ints = Make_array(Array.IntArray)
|
||||
module Bools = Make_array(Array.BoolArray)
|
||||
|
||||
module Make(Elt:sig type t end) = Make_array(Array.Make(Elt))
|
||||
|
||||
|
|
|
|||
|
|
@ -155,8 +155,5 @@ end
|
|||
module Make_array : functor (Array:Array.S) -> S with module Array = Array
|
||||
|
||||
module Bytes : S with module Array = Array.ByteArray
|
||||
module Floats : S with module Array = Array.FloatArray
|
||||
module Ints : S with module Array = Array.IntArray
|
||||
module Bools : S with module Array = Array.BoolArray
|
||||
|
||||
module Make: functor(Elt:sig type t end) -> S with module Array = Array.Make(Elt)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue