> 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-left-shift.md).

# Bitwise Left Shift

## Syntax

```swift
x << y
```

## Explanation

Where `x` is a 32-bit integer, appends `y` zeros to the binary representation of `x`

## Examples

```javascript
1 << 2  // 1 (1) -> 100 (4)
2 << 4  // 2 (10) -> 100000 (32)
```
