diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2013-06-11 21:37:22 +1000 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2013-06-12 12:21:04 +1000 |
| commit | 3ac00a94895f4d9a8119ef35494fddb9d66436ae (patch) | |
| tree | 05891e2d06bdd87071ec5df904f746494bdf8f7b /src/test | |
| parent | 9fff8c6eba287e0ed7cce6014dc58482afe425b0 (diff) | |
std: remove substr & str::count_*, methodise char_len, implement slice_chars.
The confusing mixture of byte index and character count meant that every use of .substr was incorrect; replaced by slice_chars which only uses character indices. The old behaviour of `.substr(start, n)` can be emulated via `.slice_from(start).slice_chars(0, n)`.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-pass/utf8_chars.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/utf8_chars.rs b/src/test/run-pass/utf8_chars.rs index 11f0d59c700..c126a84e782 100644 --- a/src/test/run-pass/utf8_chars.rs +++ b/src/test/run-pass/utf8_chars.rs @@ -21,7 +21,7 @@ pub fn main() { let schs: ~[char] = s.iter().collect(); assert!(s.len() == 10u); - assert!(str::char_len(s) == 4u); + assert!(s.char_len() == 4u); assert!(schs.len() == 4u); assert!(str::from_chars(schs) == s); assert!(s.char_at(0u) == 'e'); |
