Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 31 million developers.
Sign up
Popular repositories
-
rev_slice
A simple alternative to negative indexing on rust slices
Rust 2
-
arraytools
Rust 2
-
rust
Forked from rust-lang/rust
A safe, concurrent, practical language.
Rust
-
rfcs
Forked from rust-lang/rfcs
RFCs for changes to Rust
Shell
-
rayon
Forked from rayon-rs/rayon
Rayon: A data parallelism library for Rust
Rust
-
rust-forge
Forked from rust-lang/rust-forge
Information useful to people contributing to Rust
HTML
297 contributions in the last year
Contribution activity
April 2019
March 2019
- scottmcm/multipart Rust
Created a pull request in rust-lang/rust that received 3 comments
Use lifetime contravariance to elide more lifetimes in core+alloc+std
Sample: - impl<'a, 'b, A: ?Sized, B: ?Sized> PartialEq<&'b mut B> for &'a mut A where A: PartialEq<B> { + impl<A: ?Sized, B: ?Sized> PartialEq<&mut…
Created an issue in rust-lang/rust that received 1 comment
rustdoc search should ensure it shows exact matches
I was trying to find https://doc.rust-lang.org/nightly/nightly-rustc/syntax/ptr/struct.P.html in rustdoc, but that doesn't show up anywhere if I ju…