src/intobject/ops_bitwise

Source   Edit  

Procs

proc `and`(a, b: IntObject): IntObject {....raises: [], tags: [], forbids: [].}
Source   Edit  
proc `not`(self: IntObject): IntObject {....raises: [], tags: [], forbids: [].}
long_invert Source   Edit  
proc `or`(a, b: IntObject): IntObject {....raises: [], tags: [], forbids: [].}
Source   Edit  
proc `shl`(a, b: IntObject): IntObject {....raises: [ValueError], tags: [],
    forbids: [].}
Source   Edit  
proc `shl`(a: IntObject; shiftby: BiggestUInt;
           shiftMayOvf: static[bool] = ShiftMayOvf): IntObject
Source   Edit  
proc `shr`(a, b: IntObject): IntObject {....raises: [ValueError], tags: [],
    forbids: [].}
Source   Edit  
proc `shr`(a: IntObject; shiftby: BiggestUInt;
           shiftMayOvf: static[bool] = ShiftMayOvf): IntObject
Source   Edit  
proc `xor`(a, b: IntObject): IntObject {....raises: [], tags: [], forbids: [].}
Source   Edit