unstabilize Words struct
Words struct was stabilied by mistake. Unstabilize.
This commit is contained in:
parent
7397bdc9c5
commit
f43c86cda4
2 changed files with 3 additions and 1 deletions
|
@ -38,6 +38,7 @@
|
||||||
#![feature(unsafe_no_drop_flag, filling_drop)]
|
#![feature(unsafe_no_drop_flag, filling_drop)]
|
||||||
#![feature(step_by)]
|
#![feature(step_by)]
|
||||||
#![feature(str_char)]
|
#![feature(str_char)]
|
||||||
|
#![feature(str_words)]
|
||||||
#![feature(slice_patterns)]
|
#![feature(slice_patterns)]
|
||||||
#![feature(debug_builders)]
|
#![feature(debug_builders)]
|
||||||
#![feature(utf8_error)]
|
#![feature(utf8_error)]
|
||||||
|
|
|
@ -26,7 +26,8 @@ use core::str::Split;
|
||||||
use tables::grapheme::GraphemeCat;
|
use tables::grapheme::GraphemeCat;
|
||||||
|
|
||||||
/// An iterator over the words of a string, separated by a sequence of whitespace
|
/// An iterator over the words of a string, separated by a sequence of whitespace
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
#[unstable(feature = "str_words",
|
||||||
|
reason = "words() will be replaced by split_whitespace() in 1.1.0")]
|
||||||
pub struct Words<'a> {
|
pub struct Words<'a> {
|
||||||
inner: Filter<Split<'a, fn(char) -> bool>, fn(&&str) -> bool>,
|
inner: Filter<Split<'a, fn(char) -> bool>, fn(&&str) -> bool>,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue