Why OCaml?
Related
More from ring.muhokama.fun
Summary of a response about how to order products by their votes/reviews using rank aggregation (using Shopify approach).
This article presents the use of the destruct command in Merlin and OCaml-lsp to generate missing patterns, or to specify patterns in pattern matching.
Summary of a response regarding the encoding of visitors without pattern matching in OCaml, using the fold function.
In this article, we're going to look at how generalised openings can be used to reproduce a common practice in other languages, which I call, somewhat pompously, import strategies,
Guarded methods allow constraints to be attached to the receiver (self) only for certain methods, so that these methods can only be called if the receiver satisfies these constraints (these guards). OCaml does not syntactically allow this type of method to be defined directly. In this note, we'll look at how to encode them using a type equality...