Vesa Karvonen

Results 126 comments of Vesa Karvonen

> looks like a bug in [ocaml/setup-ocaml](https://github.com/ocaml/setup-ocaml): > > ``` > D:\a\_actions\ocaml\setup-ocaml\v2\dist\index.cjs:19591 > if (!arg.includes(" ") && !arg.includes(" ") && !arg.includes('"')) { > ^ > > TypeError: arg.includes is not...

Any formulation of the message that helps people discover that public libraries may actually depend on private libraries if you just specify the package for those private libraries is fine...

Would the use of [FLS](https://ocaml-multicore.github.io/picos/doc/picos/Picos/Fiber/FLS/index.html) be sufficient? ```ocaml module Picos_fiber_id : sig val fiber_id : unit -> int (** [fiber_id ()] returns a unique integer id for the current fiber....

If I understand correctly what you are after then this is something I also thought about a lot while designing the Fiber concept. Yes, I agree, it would be nice...

I made [an experiment](https://github.com/polytypic/ctypes-test) to try to use Ctypes to link to a custom DLL on Windows such that the result OCaml library could be loaded in the OCaml toplevel...

With an ugly hack to use `flexlink` in dune (replacing `libtool` invocation) ``` (bash "x86_64-w64-mingw32-ar rcs libuv.a `find src -path '*/.libs/*.o'`") (bash "flexlink -chain mingw64 -o dlluv.dll `find src -path...

I hope you don't my intrusion. In my [optics library](https://github.com/calmm-js/partial.lenses) there is a lens constructor [`pick`](https://github.com/calmm-js/partial.lenses#L-pick) and a specialized version of it called [`props`](https://github.com/calmm-js/partial.lenses#L-props) that allow one to focus on...

I created a PR adding new benchmarks for the work-stealing deque #130 and I added a commit to this PR to optimize the work-stealing deque to avoid performance pitfalls on...

FYI, I will squash this PR to a single commit to make this PR a little bit easier to work with.

FYI, I changed this to use Picos instead of DLA.