bit_not function

int bit_not(
  1. dynamic x$1
)

Implementation

dc.int bit_not(dc.dynamic x$1, ){
return (~(x$1 as dc.int));
}