RGBPixel.opBinary - multiple declarations

Function RGBPixel.opBinary

Addition of two RGBPixels

RGBPixel opBinary(string op : "+") (
  RGBPixel other
) const pure @safe;

Function RGBPixel.opBinary

Subtraction of two RGBPixels

RGBPixel opBinary(string op : "-") (
  RGBPixel other
) const pure @safe;

Function RGBPixel.opBinary

Multiplication by a scalar

RGBPixel opBinary(string op : "*") (
  float scalar
) const pure @safe;

Function RGBPixel.opBinary

Division by a scalar

RGBPixel opBinary(string op : "/") (
  float scalar
) const pure @safe;