]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-14919.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[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 // pretty-expanded FIXME #23616
12
13 trait Matcher {
14     fn next_match(&mut self) -> Option<(uint, uint)>;
15 }
16
17 struct CharPredMatcher<'a, 'b> {
18     str: &'a str,
19     pred: Box<FnMut(char) -> bool + 'b>,
20 }
21
22 impl<'a, 'b> Matcher for CharPredMatcher<'a, 'b> {
23     fn next_match(&mut self) -> Option<(uint, uint)> {
24         None
25     }
26 }
27
28 trait IntoMatcher<'a, T> {
29     fn into_matcher(self, &'a str) -> T;
30 }
31
32 impl<'a, 'b, F> IntoMatcher<'a, CharPredMatcher<'a, 'b>> for F where F: FnMut(char) -> bool + 'b {
33     fn into_matcher(self, s: &'a str) -> CharPredMatcher<'a, 'b> {
34         // FIXME (#22405): Replace `Box::new` with `box` here when/if possible.
35         CharPredMatcher {
36             str: s,
37             pred: Box::new(self),
38         }
39     }
40 }
41
42 struct MatchIndices<M> {
43     matcher: M
44 }
45
46 impl<M: Matcher> Iterator for MatchIndices<M> {
47     type Item = (uint, uint);
48
49     fn next(&mut self) -> Option<(uint, uint)> {
50         self.matcher.next_match()
51     }
52 }
53
54 fn match_indices<'a, M, T: IntoMatcher<'a, M>>(s: &'a str, from: T) -> MatchIndices<M> {
55     let string_matcher = from.into_matcher(s);
56     MatchIndices { matcher: string_matcher }
57 }
58
59 fn main() {
60     let s = "abcbdef";
61     match_indices(s, |c: char| c == 'b')
62         .collect::<Vec<(uint, uint)>>();
63 }