BlzBitOr
- Parameters
-
x integer
y integer
- comment
Returns the result of connecting all bits of both numbers using OR (in regards of binary numeral system). It returns a number with bits, being set in at least one of the numbers.
3v1 => 3 (0011 v 0001 => 0011) 2v5 => 7 (0010 v 0101 => 0111)
- pure
- This function is pure. For the same values passed to it, it will always return the same value.
- patch
1.31.0.11889
- Source
- common.j
- return type
integer
- Source code
native BlzBitOr takes integer x, integer y returns integer