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)

patch

1.31

pure
This function is pure. For the same values passed to it, it will always return the same value.
return type
integer
Source code
native BlzBitOr                                    takes integer x, integer y returns integer
Source
common.j
wc3modding.com
BlzBitOr