Method: Vips::Image#&
- Defined in:
- lib/vips8/image.rb
permalink #&(other) ⇒ Image
Integer bitwise AND with an image, constant or array.
808 809 810 811 |
# File 'lib/vips8/image.rb', line 808 def &(other) other.is_a?(Vips::Image) ? boolean(other, :and) : boolean_const(other, :and) end |