key-list

A very minimal crate to get you a specific sequence between two characters in a string, fast.

Build status badge Crates io badge License badge

How to use

toml [dependencies] key-list = "1"

And some code

```rust let text = "/this/ has some /keys/"; let list = KeyList::new(text, '/', '/');

for key in list { println!("{}", key); // '/this/', '/keys/' } ```