Closed
Description
For example, see: http://doc.rust-lang.org/std/collections/struct.Bitv.html#method.from_fn
fn from_fn<F>(len: usize, f: F) -> Bitv
where F: FnMut(usize), <F as FnMut(usize)>::Output == bool
Should look like:
fn from_fn<F>(len: usize, f: F) -> Bitv
where F: FnMut(usize) -> bool
This is because of the change to use associated types for the output.