You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib.rs
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,18 @@
1
1
//! `FixedBitSet` is a simple fixed size set of bits.
2
2
//!
3
-
//!
4
3
//! ### Crate features
5
4
//!
6
5
//! - `std` (default feature)
7
6
//! Disabling this feature disables using std and instead uses crate alloc.
8
-
//! Requires Rust 1.36 to disable.
9
7
//!
10
-
//! ### Rust Version
8
+
//! ### SIMD Acceleration
9
+
//! `fixedbitset` is written with SIMD in mind. The backing store and set operations will use aligned SIMD data types and instructions when compiling
10
+
//! for compatible target platforms. The use of SIMD generally enables better performance in many set and batch operations (i.e. intersection/union/inserting a range).
11
11
//!
12
-
//! This version of fixedbitset requires Rust 1.39 or later.
12
+
//! When SIMD is not available on the target, the crate will gracefully fallback to a default implementation. It is intended to add support for other SIMD architectures
0 commit comments