> For the complete documentation index, see [llms.txt](https://docs.cheddar.vihan.org/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cheddar.vihan.org/docs/mathematics/bitwise-right-shift.md).

# Bitwise Right Shift

## Syntax

```swift
x >> y
```

## Explanation

Where `x` is a 32-bit integer, discards last `y` binary digits of `x`

## Examples

```javascript
8  >> 1  // 1000 (8) -> 100 (4)
31 >> 2  // 11111 (31) -> 111 (7)
```
