Previous Page | Next Page

Functions and CALL Routines

BNOT Function



Returns the bitwise logical NOT of an argument.
Category: Bitwise Logical Operations

Syntax
Arguments
Details
Examples

Syntax

BNOT(argument)


Arguments

argument

specifies a numeric constant, variable, or expression.

Range: between 0 and (232)-1 inclusive

Details

If the argument contains a missing value, then the function returns a missing value and sets _ERROR_ equal to 1.


Examples

SAS Statements Results
x=bnot(0F000000Fx);
put x=hex.;
 
x=0FFFFFF0

Previous Page | Next Page | Top of Page