GROPU_BITMAP_OR_STATE
Introduction
The GROPU_BITMAP_OR_STATE
function is used to compute the bitwise OR operation on a set of Bitmap data and returns an intermediate BITMAP
object. This function is highly efficient when dealing with large-scale datasets, especially in scenarios where union operations on multiple Bitmaps are required. The returned intermediate state can be used for subsequent merge operations, enabling more complex aggregation logic.
Syntax
Parameters
bitmap
: An expression of typeBITMAP
, representing the Bitmap data to be operated on.
Return Value
The function returns an intermediate BITMAP
object, representing the intermediate result of the bitwise OR operation. This intermediate state can be used for subsequent merge operations.
Usage Example
Example 1: Basic Usage
Result: Returns an intermediate Bitmap object representing the intermediate result of the bitwise OR operation.
Example 2: Combined with groupBitmapMerge
The groupBitmapMerge
function is used to merge multiple intermediate Bitmap objects and generate a complete Bitmap.
Result: Returns a complete Bitmap representing the result of the bitwise OR operation on all input Bitmaps.