njlr
njlr
I was wondering if there's a way to define tests / test lists in a `netstandard2.0` library. Expecto as it is now appears to only target `net6.0`. This can be...
In this code for `ocamlyacc`, there are expressions `$startpos` and `$endpos`: ```ocaml | x = TIDENT { Tvar (($startpos, $endpos), x) } ``` https://github.com/ahrefs/atd/blob/7f786931e05b238b2cc4a9c63c2521d3f68d7052/atd/src/parser.mly#L135-L136 I think that these take the...
This PR adds a Computation Expression for decoding. It is called `decoder` and works as one might expect: ```fsharp type Item = | Book of title : string * year...
I think we can make writing JSON programaticaly a little more convenient without touching the core abstractions. Before: ```fsharp Encode.object [ "foo", Encode.object [ "bar", Encode.list [ Encode.int 123; Encode.string...
Like `List.sequenceAsyncResultM` but would stop at the first success. Is there something like this already provided? ```fsharp let firstSuccess (tasks : Async list) : Async = let rec loop (errors...
This PR adds a Bazel build for the tool. The test script still needs to be migrated to Bazel in a future PR. This is an initial step towards https://github.com/GoogleContainerTools/container-structure-test/issues/345
**I propose we** ... Add an Algebraic Effects system. _This is not a precise definition, just a sketch of what it might look like..._ Define effects with an input type...
The current requirement (see https://www.nuget.org/packages/FSharp.Data.GraphQL.Server/2.2.1#dependencies-body-tab) is - [FSharp.Core](https://www.nuget.org/packages/FSharp.Core/) (>= 7.0.403) Could this be relaxed to `>= 6.0.0` ?
### What happened? _Note I was unsure whether to put this into `rules_js` or `tar.bzl`._ Attempting to bundle this: ```starlark load("@npm//:defs.bzl", "npm_link_all_packages") load("@npm//:xlsx-cli/package_json.bzl", xlsx_cli_bin = "bin") load("@tar.bzl", "tar") npm_link_all_packages( name...