Developer Program Member
- Kickstarter
- New York City
- coreyf@rwell.org
- https://rwell.org/
Pinned repositories
2,411 contributions in the last year
Contribution activity
January 2017
- frewsxcv/cargobomb Rust
- frewsxcv/json Rust
- frewsxcv/ruma-signatures Rust
- frewsxcv/twitter-rs Rust
- frewsxcv/epub-builder Rust
- frewsxcv/helix Rust
Created a pull request in rust-lang/rust
that received 12
comments
Add more references between lowercase/uppercase operations.
- Add doc examples for `std::ffi::OsString` fucntions/methods.
- A few improvements to the slice docs.
- A few improvements to the slice docs.
- Add doc examples & description in `std::os::unix::ffi`.
- Minor improvements to docs in std::env structures/functions.
- Rollup of 19 pull requests
- Expand {Path,OsStr}::{to_str,to_string_lossy} doc examples.
- Add 'platform-specific' section to `sleep_ms` to match `sleep`.
- Don't generate doc if doc comments only filled with 'white' characters
- Add missing urls for array docs
- Add functions to safely transmute float to int
- Improve doc cfg(test) and tests directory
- Force backline on all where in docs
- Add doc examples for `std::ffi::OsString` fucntions/methods.
- Update if-let.md
- Add Debug implementations for libcollection structs
- Minor improvements to docs in std::env structures/functions.
- Add missing links and examples for path modules and structs
- Expand documentation of process::exit and exec
- Instant doc
- Expand {Path,OsStr}::{to_str,to_string_lossy} doc examples.
- Reduce the size of static data in std_unicode::tables
- Document custom derive.
Created an issue in rust-lang/rust
that received 3
comments
Can't compile type with lifetime bound in certain order
This compiles: fn lol<'a>() -> Box<Iterator<Item=()> + 'a> { unimplemented!() } fn main() { } This doesn't: fn lol<'a>() -> Box<Iterator<'a + Item=โฆ