Method: Vips::Image#^
- Defined in:
- lib/vips8/image.rb
permalink #^(other) ⇒ Image
Integer bitwise EOR with an image, constant or array.
817 818 819 820 |
# File 'lib/vips8/image.rb', line 817 def ^(other) other.is_a?(Vips::Image) ? boolean(other, :eor) : boolean_const(other, :eor) end |