Utku Demir
Utku Demir
I think this is a great idea! I would use this feature too. Here's a draft of what I think we can implement: * Add a command line flag called...
Also, it seems like visualising all roots surfaces some performance issues. I suspect this is also because of the added size calculation which is quadratic. I'll need to work on...
Great idea! Just to start the brainstorming: * Should we simply have a "details" modal showing the meta information for the selected package, or is there any information we can/should...
> Getting the metadata could actually be a problem. The metadata is specified in the nixpkgs expression for every package and can be retrieved via pkgs.{package}.meta. But I don't know...
+1 for me for self-contained web apps, and compile-time file embedding would certainly be very useful in `servant-server`. But I'm not sure if it belongs to the API definition, because...
I had a problem today that I think is relevant to this issue. Most operations on linear mutable vectors rely on the vector being unique, so the usual way to...
@treeowl That idea is seems to be similar to the one on the issue https://github.com/tweag/linear-base/issues/27. I personally would prefer an interface like that than the explosion of classes as we...
> ... it may be fine for the empty vector to be unrestricted. After all, there is just one of them. And it can't be mutated ... . We have...
Technically, `Vector`'s don't have a `allocBeside` function, also not have `Vector a #-> Array a`. So specifically in the `Vector` case, we might be safe. But having to choose between...
> except probably lseq is not the best example, because it probably ought to stay linear But on my `lefts` example above, having it polymorphic allows me to reuse the...