Closed
Description
E.g. http://doc.rust-lang.org/nightly/std/thread/fn.scoped.html is all on one line
pub fn scoped<'a, T, F>(f: F) -> JoinGuard<'a, T> where T: Send + 'a, F: FnOnce() -> T, F: Send + 'a
It'd be much nicer as
pub fn scoped<'a, T, F>(f: F) -> JoinGuard<'a, T>
where T: Send + 'a, F: FnOnce() -> T, F: Send + 'a
or even broken more.