-
The pointer-free nature of succinct data-structures makes them very amenable to (de)serialization by simply casting their memory to/from a bunch of bytes.
Not only would this remove most (de)serial…
-
The behavior of chomp has always been kind of weird, especially when it forces you to write:
```
chomp(my $line = );
```
instead of:
```
my $line = chomp ;
```
Shouldn't chomp work more like trim?…
-
It explains in the README that a goal for Koka is to support array programming better in the future, and I wanted to ask what that might look like, and what is currently possible.
1. I want to map …
-
Requires thought to fix.
Specifically, every cursor instance ever created for each (react component, path, value) is forever retained so if we see the same (react component, path, value) we can retur…
-
For people coming to this thread afresh, the RFC is here: https://github.com/fsharp/fslang-design/blob/main/RFCs/FS-1094-immarray.md
----
I propose we work out how to make one particular immutable…
dsyme updated
10 months ago
-
I'm currently looking at Scala's collections API and one thing that stands out to me is that its collections are separated, at their broadest level, by mutable and immutable. This is something I need …
-
This note gathers the constraints + will drive toward a design of **object sharding** in IPFS and IPLD. Object sharding is the algorithms and formats used to represent a single (virtual) large object …
-
**Describe the bug**
I might be tired, or stupid... While looping through all vertices of a mesh and updating a vertex attribute of one vertex, all the vertices in the loop also get that value.
**…
-
We already stopped adding new methods for multidigraphs, the main issue is that there is no way to distinguish between the multiple edges. To address this I propose removing support for multidigraphs …
-
We need to improve the performance of the Hive game by identifying and addressing bottlenecks in the code. The goal is to create a brief report on the current state of efficiency and open issues for c…