BitOr

Bitwise OR operation - combines bits from two values

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Int

Quick Summary

Bitwise OR operation - combines bits from two values

Technical Exegesis...

Bitwise OR operation - combines bits from two values. Performs OR on each bit position. Result bit is 1 if either corresponding input bit is 1. Syntax is value1 BitOr value2. Used for setting flags, combining bit masks, or low-level binary manipulation. Different from logical Or which treats entire values as boolean.

Example

Example.bam
; No example implemented yet