]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-14919.rs
21bda93ecec650f978b4b35f42cfa4b58e813377
[rust.git] / src / test / run-pass / issue-14919.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 trait Matcher {
12     fn next_match(&mut self) -> Option<(uint, uint)>;
13 }
14
15 struct CharPredMatcher<'a, 'b> {
16     str: &'a str,
17     pred: Box<FnMut(char) -> bool + 'b>,
18 }
19
20 impl<'a, 'b> Matcher for CharPredMatcher<'a, 'b> {
21     fn next_match(&mut self) -> Option<(uint, uint)> {
22         None
23     }
24 }
25
26 trait IntoMatcher<'a, T> {
27     fn into_matcher(self, &'a str) -> T;
28 }
29
30 impl<'a, 'b, F> IntoMatcher<'a, CharPredMatcher<'a, 'b>> for F where F: FnMut(char) -> bool + 'b {
31     fn into_matcher(self, s: &'a str) -> CharPredMatcher<'a, 'b> {
32         CharPredMatcher {
33             str: s,
34             pred: box self,
35         }
36     }
37 }
38
39 struct MatchIndices<M> {
40     matcher: M
41 }
42
43 impl<M: Matcher> Iterator for MatchIndices<M> {
44     type Item = (uint, uint);
45
46     fn next(&mut self) -> Option<(uint, uint)> {
47         self.matcher.next_match()
48     }
49 }
50
51 fn match_indices<'a, M, T: IntoMatcher<'a, M>>(s: &'a str, from: T) -> MatchIndices<M> {
52     let string_matcher = from.into_matcher(s);
53     MatchIndices { matcher: string_matcher }
54 }
55
56 fn main() {
57     let s = "abcbdef";
58     match_indices(s, |&mut: c: char| c == 'b')
59         .collect::<Vec<(uint, uint)>>();
60 }