Jeremy Yallop
Jeremy Yallop
@jordwalke: I'm not that familiar with `Lwt`'s ppx extension, but I know Jane Street's [ppx_let](https://github.com/janestreet/ppx_let), which does something similar (including parallel computation support for `let ... and`) and various other...
Thanks. I've fixed the other URL failures. Could you please add two blank spaces at the end of each line where a break is needed?
Linking to the DBLP record has worked well [elsewhere](https://github.com/metaocaml/metaocaml-bibliography). Pull requests to update this repository similarly are welcome!
@kyoDralliam, is this a 32-bit system? I wonder whether you're seeing this bug: ``` https://github.com/ocamllabs/ocaml-ctypes/issues/52 ``` which is fixed in 0.1.1 and later versions.
If I'm not mistaken, this has been fixed by the `Sub` operator in a78520c94.
@whitequark: if you happen to know what's going on here, a PR would be very much appreciated.
Thanks for the report, @ryanrhymes. It should be possible for ctypes to generate more compact code here by merging similar adjacent cases in the generated `foreign` function. Perhaps we could...
The problem is that, without the tag, there's not always enough information available to retrieve the layout. As the generated code displayed in the error message suggests: ```ocaml 16 |...
This is likely to be tricky for reasons that are not really specific to ctypes. What type would you like the function to have on the OCaml side?
It's possible in theory, at least if the API you're binding exposes something analogous to `vprintf`. However, it's likely to be quite a bit of work. The implementation of the...