Element - ↳
- Right Bit Shift
Characters:
↳
Description
Right-bitshift a value / right-justify a string
Overloads
num-num
-a << b
num-str
-a.rjust(b)
str-num
-b.rjust(a)
str-str
-a.rjust(len(b)-len(a))
Examples
4 1 ↳
=2
8 `green` ↳
=` green`
`hello` `cheeseburger` ↳
=` hello`