Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Clarify out-of-range behaviour of i8x16.swizzle #370

Merged
merged 1 commit into from
Oct 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion proposals/simd/SIMD.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def S.shuffle(a, b, s):
Returns a new vector with lanes selected from the lanes of the first input
vector `a` specified in the second input vector `s`. The indices `i` in range
`[0, 15]` select the `i`-th element of `a`. For indices outside of the range
the resulting lane is 0.
the resulting lane is initialized to 0.

```python
def S.swizzle(a, s):
Expand Down