tree: fee95fafe8236678f10b2f3ae2f4bba4d8384992 [path history] [tgz]
  1. benches/
  2. ci/
  3. src/
  4. .travis.yml
  5. appveyor.yml
  6. Cargo.toml
  7. COPYING
  8. ctags.rust
  9. LICENSE-MIT
  10. Makefile
  11. README.md
  12. session.vim
  13. UNLICENSE
  14. x86_64-unknown-linux-sgx.json
third_party/rust-csv/rust-memchr/README.md

This crate provides a safe interface libc's memchr and memrchr. This crate also provides fallback implementations when either function is unavailable.

Build status Build status

Dual-licensed under MIT or the UNLICENSE.

Documentation

https://docs.rs/memchr

no_std

memchr links to the standard library by default, but you can disable the use_std feature if you want to use it in a #![no_std] crate:

[dependencies]
memchr = { version = "1.0", default-features = false }

Performance

On my system (Linux/amd64), memchr is about an order of magnitude faster than the more idiomatic haystack.iter().position(|&b| b == needle):

test iterator          ... bench:       5,280 ns/iter (+/- 13) = 1893 MB/s
test iterator_reversed ... bench:       5,271 ns/iter (+/- 7) = 1897 MB/s
test libc_memchr       ... bench:         202 ns/iter (+/- 0) = 49504 MB/s
test libc_memrchr      ... bench:         197 ns/iter (+/- 1) = 50761 MB/s