-
## Problem
Linked list is one of the essential data structures beside an array. It allows you to add, insert, or remove elements in constant time, without re-allocating the whole structure.
For…
-
After consulting on the slack channel, I am still not aware of a good reason why `Unsigned` types are printed in the hexadecimal base (looks like it was a decision that inherited from C). But there is…
-
Use this issue to discuss the code style for the stdlib.
The most widely supported elements of style will eventually be merged into the [Style Guide for contributors](https://github.com/fortran-lan…
-
Forcing implementors to create VddPins and GndPins for all boards is a bad idea, but our test_list_pins currently forces it.
This is related to the issue of the definition of the board.pins, .all_pin…
-
I think it would be very useful to have a duration type natively in toml. It's a thing I use a lot in my web service configs, for cache TTL or timeouts. Right now I resort to using integers and making…
-
We clearly need a good SoA abstraction to work with.
Some feature considerations for explicit memory
* device memory owner
* device memory "view" (arrays without the ownership; to be passed to ke…
-
I'd like to propose that enum be added to Go as a special kind of `type`. The examples below are borrowed from the protobuf example.
### Enums in Go today
```
type SearchRequest int
var (
Sear…
-
`%*SUB-MAIN-OPTS` seems to address part of a problem. That problem is that allomorphs are only great when you need them, which is likely an external interface. When writing strictly typed OO t…
0rir updated
10 months ago
-
Do you have any problems with Lark that aren't necessarily bugs?
Is there anything about the design that you don't like? Or the interface? Don't like how issues or releases are handled?
This is …
-
The general rule in F# let-bindings is that they must appear in order if they are dependent on one another, but inside classes, and among classes chained with `and` , the order is irrelevant.
Most of…