Radek Miček
Radek Miček
According to `README.md` and already closed issue https://github.com/Dzoukr/Dapper.FSharp/issues/67 adding `[]` to F# records isn't necessary. But when I run the following code without `[]` ```fsharp open Dapper open Dapper.FSharp.SQLite open...
Is it possible to create document-wide abbreviations for frequently used mathematical formulas? Eg. `\mathbb{N}` for natural numbers. I have tried macros but it seems that blahtex commands such as `\mathbb`...
Fixes https://github.com/gleam-lang/stdlib/issues/667. ~New `list.unique` implementation uses `gleam/set` to detect whether item has already been seen.~ New `list.unique` implementation uses `gleam/dict` to detect whether item has already been seen (it can't...
Hello. According to the documentation `list.unique` returns in loglinear time. But it's implementation ```gleam pub fn unique(list: List(a)) -> List(a) { case list { [] -> [] [x, ..rest] ->...