#iterator #string #chars #owned

owned_chars

Owned iterators with the same output as Chars and CharIndices

7 releases

Uses old Rust 2015

0.3.2 Dec 20, 2020
0.3.1 Mar 15, 2020
0.3.0 May 22, 2018
0.2.1 Jan 20, 2017
0.1.0 Dec 18, 2015

#719 in Text processing

Download history 42/week @ 2024-07-22 123/week @ 2024-07-29 63/week @ 2024-08-05 49/week @ 2024-08-12 54/week @ 2024-08-19 95/week @ 2024-08-26 62/week @ 2024-09-02 42/week @ 2024-09-09 32/week @ 2024-09-16 77/week @ 2024-09-23 67/week @ 2024-09-30 68/week @ 2024-10-07 87/week @ 2024-10-14 90/week @ 2024-10-21 98/week @ 2024-10-28 103/week @ 2024-11-04

381 downloads per month
Used in 12 crates (5 directly)

MIT/Apache

8KB
91 lines

owned-chars

Travis CI

This crate provides an extension trait for String with two methods, into_chars and into_char_indices. These methods parallel String::chars and String::char_indices, but the iterators they create consume the String instead of borrowing it.

Release notes

  • 0.3.0
    • Rewrite to use delegate crate
    • Fix/breaking change: OwnedChars::as_str works the same way as std::Chars::as_str

Example

use owned_chars::OwnedChars;

fn main() {
    let mut chars = OwnedChars::from_string("0123456789ABCDEF".to_owned());
    let next_is_digit = |chars: &mut OwnedChars| chars.next().map_or(false, |c| c.is_numeric());

    assert!(next_is_digit(&mut chars)); // 0
    assert!(next_is_digit(&mut chars)); // 1
    assert!(next_is_digit(&mut chars)); // 2
    assert!(next_is_digit(&mut chars)); // 3
    assert!(next_is_digit(&mut chars)); // 4
    assert!(next_is_digit(&mut chars)); // 5
    assert!(next_is_digit(&mut chars)); // 6
    assert!(next_is_digit(&mut chars)); // 7
    assert!(next_is_digit(&mut chars)); // 8
    assert!(next_is_digit(&mut chars)); // 9

    assert!(!next_is_digit(&mut chars)); // A
    assert!(!next_is_digit(&mut chars)); // B
    assert!(!next_is_digit(&mut chars)); // C
    assert!(!next_is_digit(&mut chars)); // D
    assert!(!next_is_digit(&mut chars)); // E
    assert!(!next_is_digit(&mut chars)); // F
}

Dependencies

~1.5MB
~37K SLoC