Element - ⋎
- Bitwise Or
Characters:
⋎
Description
Performs bitwise or between two numbers / Removes a character at nth index / Merges strings on longest common prefix and suffix
Overloads
num-num
-a | b
num-str
-b[:a]+b[a+1:]
str-num
-a[:b]+a[b+1:]
str-str
-merge_join(a,b)
Examples
420 69 ⋎
=485
2 `abc` ⋎
=`ab`
`abc` 2 ⋎
=`ab`
`Hello` `lower` ⋎
=`Hellower`