The BIT_COMPLEMENT function performs the bitwise logical COMPLEMENT operation on the values in RAW r and returns the result RAW of the COMPLEMENT operation. The length of the result is equal to that of the input RAW r.
Syntax
UTL_RAW.BIT_COMPLEMENT (
r IN RAW)
RETURN RAW;
Parameters
| Parameter | Description |
|---|---|
| r | The RAW value for performing the COMPLEMENT operation. |
Return values
| Return value | Description |
|---|---|
| RAW | This value contains the result of the COMPLEMENT operation on r. |