A 63-bit floating-point type for 64-bit OCaml Pascal Cuoq on 9 May 2013
The OCaml runtime The OCaml runtime allows polymorphism through the uniform representation of types. Every OCaml value is represented as a single word, so that it is possible to have a single implementation for, say, “list of things”, with functions to access (e.g. List.length) and build (e.g. List.map) these lists...
Read More