Jonathan Reem

Results 51 comments of Jonathan Reem

I approve, but I really appreciate the group maintenance and conventions effort which is much harder with many disparate crates and authors and I would be sad to lose it....

@Gankro that's awesome. So we should mark PRs using @FlashCat instead of @bors, and it'll work like in rust-lang?

Maybe we should group persistent collections together? I feel like we'd just get into the same situation as with collect down the line though.

If you use a safe scoped thread library like `scoped-pool` you could remove the unsafety here - here's an example of safely using `scoped-pool` to write spawn_mount externally: https://github.com/terminalcloud/tfs/blob/e9a1ce1/src/lib.rs#L461-L482 EDIT:...

I've hit this too, and have worked around it in my code in github.com/terminalcloud/tfs using a 1-second sleep after starting the fs, but this is unreliable (every once in a...

The source can be a bit hard to follow (though it is well commented). A short explanation of how the core of macropy works would be very useful to new...

It would be even better if we could abstract over ownership status, i.e. we could collapse `Trait[Mut|Move]?` into just `Trait`.

Not really. I think this deserves consideration pre-1.0 because it would collapse and change traits which are lang items, such as the Deref, Fn and Index families. Code that implemented...