We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 447e6d8 commit 4a9f483Copy full SHA for 4a9f483
README.md
@@ -8,6 +8,8 @@
8
9
An immutable byte slice that may be inlined, and can be partially cloned without heap allocation.
10
11
+Think of it as a specialized `Arc<[u8]>` that can be inlined (skip allocation for small values) and no weak count.
12
+
13

14
15
`byteview` was designed to speed up deserialization in `lsm-tree`, allow inlining of small values and reduce memory usage compared to Arc'd slices.
@@ -61,4 +63,4 @@ Allocating 500k `"helloworld".repeat(1000)` (len=10'000) strings:
61
63
62
64
```bash
65
cargo +nightly fuzz run fuzz_target_1
-```
66
+```
0 commit comments