operator << method

T operator <<(
  1. Listenable other
)

Receives notifications from a Listenable.

Implementation

T operator <<(Listenable other) {
  other.addListener(notifyListeners);
  return this;
}