-
Catherine West mentions a crucial missing feature, independent allocation in her RustConf talk, as @nabijaczleweli mentioned to me:
https://youtu.be/aKLntZcp27M?t=2026
@kyren Could you elaborat…
-
`SlotMap` is an unordered map. It would be neat to have a map-like serialization instead of the vector. This has some advantages:
- It's more intuitive than the slot syntax
- Users may get confuse…
-
For example:
```
let mut create: SlotMap = SlotMap::new();
let key = create.insert(something);
let foo_map: SlotMap = create.map(|create| Foo::new(create)); // reuse the keys from `create`
foo_…
-
fmf used to use Source instead of Source0
https://github.com/psss/fmf/pull/58
My question: is this a common practice? So far I've soon most of the spec files to have Source0. Should we fix this …
-
In the class method `from_c_repr` of the class [ontology](https://github.com/snipsco/hermes-protocol/blob/develop/platforms/hermes-python/hermes_python/ontology.py).TimeIntervalValue `from_date` and `…
-
slotMap should remain the same, so that the shadowMap can revert to type correctly.
-
-
It might be useful to understand how many bytes in memory a particular datastructure occupies.
If doesn't have any heap-allocated storage, figuring out the answer is easy: it's just `std::mem::size_…
-
-
It would be great to make the Key implement NonZero trait. The reason is that we could save space on Option and have all the Option ergonomics.
I'm not sure on the actual implementation we should t…