Skip to content

Commit de30820

Browse files
Update README.md
1 parent 87779ae commit de30820

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,10 @@ The supported element types are as follows:
4747
* **Floating Point:** `f32`, `f64`
4848
* **Signed Integers:** `i8`, `i16`, `i32`, `i64`, `isize` (`i128` excluded)
4949
* **Unsigned Integers:** `u8`, `u16`, `u32`, `u64`, `usize` (`u128` excluded)
50+
* **Pointers:** `*const T` and `*mut T` (zero-sized metadata only)
5051
* **Masks:** 8-bit, 16-bit, 32-bit, 64-bit, and `usize`-sized masks
5152

52-
Floating point, signed integers, and unsigned integers are the [primitive types](https://doc.rust-lang.org/core/primitive/index.html) you're already used to.
53+
Floating point, signed integers, unsigned integers, and pointers are the [primitive types](https://doc.rust-lang.org/core/primitive/index.html) you're already used to.
5354
The mask types have elements that are "truthy" values, like `bool`, but have an unspecified layout because different architectures prefer different layouts for mask types.
5455

5556
[simd-guide]: ./beginners-guide.md

0 commit comments

Comments
 (0)