Tagged Questions
1
vote
1answer
318 views
Is it possible to call a C function from OCaml passing a huge array efficiently?
I'm considering the use of a combination between OCaml and C code in a new application. It seems that calling C code from Ocaml is simple:
external name : type = C-function-name
However, it ...