operator + method

OkLab operator +(
  1. OkLab other
)

Implementation

OkLab operator +(OkLab other) {
  return OkLab(L + other.L, a + other.a, b + other.b);
}