Overload List
| # | Signature | Description |
|---|---|---|
| 1 | class operator BitwiseAnd(const Left: TVecInt; const Right: VectorInt): VectorInt; | Computes bitwise "and" between Left and right. |
| 2 | class operator BitwiseAnd(const Left: VectorInt; const Right: TVecInt): VectorInt; | Computes bitwise "and" between Left and right. |
| 3 | class operator BitwiseAnd(const Left: VectorInt; const Right: VectorInt): VectorInt; | Computes bitwise "and" between Left and right. |
Overload 1: class operator BitwiseAnd(const Left: TVecInt; const Right: VectorInt): VectorInt;
Computes bitwise "and" between Left and right.
Result: stored in self (calling object), returns self for chaining
Overload 2: class operator BitwiseAnd(const Left: VectorInt; const Right: TVecInt): VectorInt;
Computes bitwise "and" between Left and right.
Result: stored in self (calling object), returns self for chaining