-
Should these be libraries? (Can they be libraries?)
* list
* set
* map
* stack
* queue
* deque
* graph
The first three are the essential ones, while the other four can be constructed from …
-
Currently, the `Gen` instance for ADTs in `zio-magnolia` is non deterministic.
That is, using it in `checkAll` will not iterate through all of the elements.
Since ADT elements are a finite set, it…
-
[18InformatikHinweise2025.pdf](https://github.com/user-attachments/files/17644523/18InformatikHinweise2025.pdf)
-
Currently, the printing of ADTs is a bit messy:
```julia
julia> using Moshi.Data: @data
julia> @data List{T} begin
Nil
Cons(T, List{T})
end
Main.List
julia> fo…
-
Current idea (see post below for considerations)
![image](https://user-images.githubusercontent.com/4022046/229516438-580004b9-e85e-4c9e-8f2d-a190df01e242.png)
Additionally, I think that both la…
-
This issue track adding documentation to clarify iterator and object reference validity for LLVM ADTs like `DenseMap` and others. Please see https://kera.name/articles/2011/06/iterator-invalidation-ru…
-
Hi Emilio,
AWESOME tool for starters. Seriously, this and the instant theme deploy are my two favourite toys right now and inspiring me to try to do similar things to automate more of our needs. Ques…
-
The attached file is the output of a Real Audio -> MP3 migration, using FFMPEG (package ffmpeg-5.1.4-1.el9) using a super basic `ffmpeg -i ` command line conversion.
The file currently identifies …
-
## 📖 Documentation
In the documentation there's a suggestion on how to implement ADTs with _TypeScript_:
```typescript
interface Bar {
readonly _tag: 'Bar'
readonly value: string
}
in…
-
I have figured out how to parse an ADT but am not sure how to serialize it well. Instead of the constructor being the initial function, a function that picks the constructor would be the starting func…