operator + method

ControllerMaid<Box> operator +(
  1. void request(
    1. Box oldBox,
    2. Box newBox
    )
)

C# style operator overloading of callMeOnTaken.

Implementation

ControllerMaid<Box> operator +(
  void Function(Box oldBox, Box newBox) request,
) {
  callMeOnTaken(request);
  return this;
}