The listeners' type.
The event's argument type tuple.
The event's return type.
Appends a listener to the listener collection.
Get the last listener or throw an error if there are no listeners. Part of the bidirectional range interface.
Calls all the registered listeners in order.
Clears all listeners.
A boolean property indicating whether there are listeners. Part of the bidirectional range interface.
Get the first listener or throw an error if there are no listeners. Part of the bidirectional range interface.
A range array of all the listeners.
Aliases $(DDOC_PSYMBOL call).
Aliases $(DDOC_PSYMBOL append).
Aliases $(DDOC_PSYMBOL remove).
Remove the last listener or throw an error if there are no listeners. Part of the bidirectional range interface.
Remove the first listener or throw an error if there are no listeners. Part of the bidirectional range interface.
Prepend listeners to the listener collection.
Removed all occurrences of the given listeners.
Copies the event to allow multiple range-like iteration. Part of the bidirectional range interface.
The number of listeners.
An event structure representing a one-to-many function/delegate relationship. It mimics a function by overriding the call operator. It also implements the bidirectional range interface.