Files
mql5-skills/skills/mql5/references/docs/34-standardlibrary/1309-standardlibrary-mathematics-stat-mathsubfunctions-statmathbitwiseor.md
T
2026-06-23 21:47:51 +08:00

31 lines
533 B
Markdown
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# MathBitwiseOr
Calculates the result of bitwise OR operation for specified arrays.
```
bool  MathBitwiseOr(
   const int&  array1[],  // the first array of values
   const int&  array2[],  // the second array of values
   int&        result[]   // array of results
   )
```
Parameters
array1[]
[in] The first array of values.
array2[]
[in] The second array of values.
result[]
[out] Array to output the results.
Return Value
Returns true if successful, otherwise false.