File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
branches/snap-stage3/src/libcore Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: e430a699f2c60890d9b86069fd0c68a70ece7120
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 213725407b8f70dfe9f45d636f759a8ccd9451ca
4
+ refs/heads/snap-stage3: 4155a60c75fbfe322207e99b7bd541bedf088ada
5
5
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change @@ -1918,10 +1918,9 @@ impl<A: Copy> &[A]: iter::CopyableIter<A> {
1918
1918
}
1919
1919
pure fn to_vec ( ) -> ~[ A ] { iter:: to_vec ( & self ) }
1920
1920
1921
- // FIXME--bug in resolve prevents this from working (#2611)
1922
- // fn flat_map_to_vec<B:copy,IB:base_iter<B>>(op: fn(A) -> IB) -> ~[B] {
1923
- // iter::flat_map_to_vec(self, op)
1924
- // }
1921
+ pure fn flat_map_to_vec < B : Copy , IB : BaseIter < B > > ( op : fn ( A ) -> IB ) -> ~[ B ] {
1922
+ iter:: flat_map_to_vec ( & self , op)
1923
+ }
1925
1924
1926
1925
pub pure fn find ( p : fn ( a : A ) -> bool ) -> Option < A > {
1927
1926
iter:: find ( & self , p)
You can’t perform that action at this time.
0 commit comments