Element - ⋏
- Bitwise And
Characters:
⋏
Description
Performs bitwise and between two numbers / centre a string
Overloads
num-num
-a & b
num-str
-b.center(a)
str-num
-a.center(b)
str-str
-a.center(len(b) - len(a))
Examples
420 69 ⋏
=4
`abc` 10 ⋏
=` abc `
`no` `gamers` ⋏
=` no `