• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..01-Sep-2019-

benches/H01-Sep-2019-118104

src/H01-Sep-2019-882683

.cargo-checksum.jsonH A D01-Sep-20191 KiB11

.travis.ymlH A D01-Sep-2019273 1514

COPYINGH A D01-Sep-2019126 42

Cargo.tomlH A D01-Sep-20191.3 KiB4540

LICENSE-MITH A D01-Sep-20191.1 KiB2217

MakefileH A D01-Sep-2019253 1511

README.mdH A D01-Sep-20191.3 KiB3725

UNLICENSEH A D01-Sep-20191.2 KiB2520

appveyor.ymlH A D01-Sep-2019530 2017

ctags.rustH A D01-Sep-2019902 1211

session.vimH A D01-Sep-201956 21

README.md

1This crate provides a safe interface `libc`'s `memchr` and `memrchr`.
2This crate also provides fallback implementations when either function is
3unavailable.
4
5[![Build status](https://api.travis-ci.org/BurntSushi/rust-memchr.png)](https://travis-ci.org/BurntSushi/rust-memchr)
6[![Build status](https://ci.appveyor.com/api/projects/status/8i9484t8l4w7uql0/branch/master?svg=true)](https://ci.appveyor.com/project/BurntSushi/rust-memchr/branch/master)
7[![](http://meritbadge.herokuapp.com/memchr)](https://crates.io/crates/memchr)
8
9Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org).
10
11
12### Documentation
13
14[https://docs.rs/memchr](https://docs.rs/memchr)
15
16### no_std
17
18memchr links to the standard library by default, but you can disable the
19`use_std` feature if you want to use it in a `#![no_std]` crate:
20
21```toml
22[dependencies]
23memchr = { version = "1.0", default-features = false }
24```
25
26### Performance
27
28On my system (Linux/amd64), `memchr` is about an order of magnitude faster than
29the more idiomatic `haystack.iter().position(|&b| b == needle)`:
30
31```
32test iterator          ... bench:       5,280 ns/iter (+/- 13) = 1893 MB/s
33test iterator_reversed ... bench:       5,271 ns/iter (+/- 7) = 1897 MB/s
34test libc_memchr       ... bench:         202 ns/iter (+/- 0) = 49504 MB/s
35test libc_memrchr      ... bench:         197 ns/iter (+/- 1) = 50761 MB/s
36```
37