Method: Vips::Image#|
- Defined in:
- lib/vips8/image.rb
permalink #|(other) ⇒ Image
Integer bitwise OR with an image, constant or array.
799 800 801 802 |
# File 'lib/vips8/image.rb', line 799 def |(other) other.is_a?(Vips::Image) ? boolean(other, :or) : boolean_const(other, :or) end |