Rizo
Rizo
I see. In a way, this actually reinforces my point because `Lwt_stream` has some confusing semantics discussed in https://github.com/ocsigen/lwt/issues/250.
For people who have the same issue, the workaround for now is adding the following to the package configuration: ```json ... "esy": { "sandboxEnv": { "PKG_CONFIG_PATH": "/home//.nix-profile/lib/pkgconfig" } }, ......
Nice idea. Here's a list of related articles I've in my bookmarks: - [OCaml for Haskellers](http://blog.ezyang.com/2010/10/ocaml-for-haskellers/) - [Rust from a C++ and OCaml programmer's perspective](https://gendignoux.com/blog/2017/09/05/rust-vs-cpp-ocaml-part1.html) - [The Genius of Python,...
Hi @pveber! Thanks for submitting this! 👍 Sorry in advance for the long reply. Here are my detailed thoughts on the proposed implementation and on the grouping operations in general....
Hi @pveber! Really sorry for such a delay in getting back to you on this. Life has been pushing me into some other directions... I have been trying to do...
Been testing this for the last couple of days and I really like this. I think a useful and natural addition to the implemented commands would be to have `select_word`...
@aantron Dune currently does not permit having private dependencies for public libraries. This means that adding `(public_name odoc.parser)` would require making other odoc libraries public too.
@dbuenzli mentioned in https://github.com/ocaml/odoc/pull/226#issuecomment-432581384 that parsing docstrings directly from `mli` files – which is what syntax rewriters does, of course – might not be reliable because other syntax rewriters might...
@Gabriel439 could you please elaborate on the decision of not including early termination in Foldl? Are you aware of any structures similar to Foldable that support termination in reducing functions?
I have pushed an early attempt to document this feature (see draft version [here](https://github.com/ocaml/odoc/blob/5a001e025b59c0b62ae6c53481dd0da157c3f0ff/notes/testable_examples.md)). It mostly focuses on user experience and integration with dune. I understand this is might be...