]> git.lizzy.rs Git - rust.git/blob - src/utils.rs
Merge pull request #49 from oli-obk/gitignore
[rust.git] / src / utils.rs
1 // Copyright 2015 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
12 #[inline]
13 pub fn prev_char(s: &str, mut i: usize) -> usize {
14     if i == 0 { return 0; }
15
16     i -= 1;
17     while !s.is_char_boundary(i) {
18         i -= 1;
19     }
20     i
21 }
22
23 #[inline]
24 pub fn next_char(s: &str, mut i: usize) -> usize {
25     if i >= s.len() { return s.len(); }
26
27     while !s.is_char_boundary(i) {
28         i += 1;
29     }
30     i
31 }
32
33 #[inline]
34 pub fn make_indent(width: usize) -> String {
35     let mut indent = String::with_capacity(width);
36     for _ in 0..width {
37         indent.push(' ')
38     }
39     indent
40 }