about summary refs log tree commit diff
path: root/tests/rustdoc-js-std/path-end-empty.js
diff options
context:
space:
mode:
authorNoratrieb <48135649+Noratrieb@users.noreply.github.com>2024-11-10 20:35:25 +0100
committerNoratrieb <48135649+Noratrieb@users.noreply.github.com>2024-11-10 20:37:13 +0100
commitfc8c16eb825cac02a5d8f5d9e5d6a2d4671a7922 (patch)
tree864d89ce672cfac8c5d63e16439231fd4bb6ad67 /tests/rustdoc-js-std/path-end-empty.js
parent096277e989d6de11c3077472fc05778e261e7b8e (diff)
downloadrust-fc8c16eb825cac02a5d8f5d9e5d6a2d4671a7922.tar.gz
rust-fc8c16eb825cac02a5d8f5d9e5d6a2d4671a7922.zip
`#[inline]` integer parsing functions
This improves the performance of `str::parse` into integers.

Before:
```
compare          fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ std                         │               │               │               │         │
   ├─ 328920585  10.23 ns      │ 24.8 ns       │ 10.34 ns      │ 10.48 ns      │ 100     │ 25600
   ├─ 3255       8.551 ns      │ 8.59 ns       │ 8.551 ns      │ 8.56 ns       │ 100     │ 25600
   ╰─ 5          7.847 ns      │ 7.887 ns      │ 7.847 ns      │ 7.853 ns      │ 100     │ 25600
```

After:
```
compare          fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ std                         │               │               │               │         │
   ├─ 328920585  8.316 ns      │ 23.7 ns       │ 8.355 ns      │ 8.491 ns      │ 100     │ 25600
   ├─ 3255       4.566 ns      │ 4.588 ns      │ 4.586 ns      │ 4.576 ns      │ 100     │ 51200
   ╰─ 5          2.877 ns      │ 3.697 ns      │ 2.896 ns      │ 2.945 ns      │ 100     │ 102400
```

Benchmark:
```rust
fn std(input: &str) -> Result<u64, ParseIntError> {
    input.parse()
}
```
Diffstat (limited to 'tests/rustdoc-js-std/path-end-empty.js')
0 files changed, 0 insertions, 0 deletions