コード例 #1
0
 def __ior__(self, other: Optional[bitmap]) -> bitmap:
     if other is None:
         other = NIL_BITMAP
     if isinstance(other, bitmap):
         BitMap.__ior__(self.bm, other.bm)
         return self
     raise TypeError("Invalid type {type(other)}")
コード例 #2
0
 def __ior__(self, other):
     if other is None:
         other = NIL_BITMAP
     return BitMap.__ior__(self, other)