peter7891

Results 6 issues of peter7891

Why there is no map for non generic versions of Go?

Can you document the differences between the types `Rooted` and `Handle`? They seem to be very similar. Maybe, also some examples of the 2 different usecases they satisfy. I have...

Have you tried to use a btreemap, instead of the hashmap? It might be faster, for various reasons. If not, i think https://crates.io/crates/rustc-hash is faster than `Ahash`.

Hello, I have the problem where the source viewer only works for `main.rs` and any other code is unavailable. ``` 1.36 s 99.8% 0 s foo_rs::main::he70bb0403010c57b 1.36 s 99.4% 540.00...

If you look at the Rust api for `std::collections::HashMap` it is generic over the hashing function. This is very useful for people to be able to choose, based on whether...

I tried using this in my VM. I used this example and got memory corruption. ```rust extern crate bdwgc_alloc; use bdwgc_alloc::Allocator; use std::alloc::Layout; #[global_allocator] static GLOBAL_ALLOCATOR: Allocator = Allocator; fn...

bug