4 lines
63 B
OCaml
4 lines
63 B
OCaml
|
|
let copy h =
|
||
|
|
{ size = h.size;
|
||
|
|
data = Array.copy h.data }
|