word_iter 0.2.0

Simple Iterator over all words in a string
Documentation
# Word Iter

simple rust library to iterate over all words in a given string


## Usage

```rust
use word_iter::*;

let iter_over_words = "hello world".words();
```

Now you can do fun stuff like this:
```
for word in iter_over_words {
    println!("{}", word);
}
```