Does the observer pattern model a one-to-many relationship or a many-to-many?
I've found many resources where the relationship modeled by the observer pattern is one-to-many. This makes perfectly sense, but isn't it possible to also model a many-to-many relationship and wouldn't it imply that it's general relationship is n:m?
This is a general question about the relationship modeled by the observer pattern and not one about how to add observables as observers to other observables.