Method: Hwloc::Bitmap#-

Defined in:
lib/hwloc/Bitmap.rb

#-(other) ⇒ Object



296
297
298
299
300
# File 'lib/hwloc/Bitmap.rb', line 296

def -(other)
  res = Bitmap::new
  Hwloc.hwloc_bitmap_andnot(res.ptr, @ptr, other.ptr)
  return res
end