key-list 1.0.0

A very minimal crate to get you a specific sequence between two characters in a string, fast.
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented1 out of 2 items with examples
  • Size
  • Source code size: 6.96 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 934.77 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • 0x20F/key-list
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • 0x20F

How to use

[dependencies]
key-list = "1"

And some code

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

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