-
``` bash
$ g++ --version
g++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516
Copyright (C) 2016 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
…
-
#59 manually implements `Clone::clone_from` for all `Slot`s, however,
```rust
impl Clone for Slot {
fn clone_from(&mut self, source: &Self) {
match (self.get_mut(), source.get()) {
…
-
Hi. I have an application where I want to mix up some IDs. I plan to do this by having two slotmaps, which allow me to map IDs (slotmap keys) forward and backward. The input IDs for the forward ope…
-
Hi,
we know have `MergeUnbounded` to merge an unbounded, growable list of streams. However it is not possible to *remove* streams from the list. `futures_concurrency` has a [`Keyed`](https://docs.rs/…
-
I have a situation where I'm temporarily keeping some extra data for each entry in a `SlotMap` (specifically a boolean for whether or not I've seen that entry before). I could use a `SecondaryMap`, b…
-
Cyclic references in Rust are impossible in straightforward way and workarounds are required.
1. Describe reason why it is so.
2. Show different examples when cyclic reffereneces are present
3. D…
-
In #89, @orlp says that he intends to work on a 2.0 but there is no current timeline.
I was wondering if there's interest in some patches to the current version to add CI and do things that aren't …
-
Hi! I'm using a custom container to store app data: [slotmap](https://crates.io/crates/slotmap), because I need to reference some nodes by id. The slotmap contains several objects, and also I need acc…
-
## What problem does this solve or what need does it fill?
> I haven't had a chance to review in detail, but I can answer the f64 question. For a very large scrolling area, the scroll offset would …
-
Rayon support for parallel iteration would be nice for when I want to iterate over a `SlotMap` in parallel.