MulticastImpl.opAssign

Reassigns this multicast delegate with a given array of delegates. Does not duplicate the array, so future modifications might change the behavior of this delegate. It is recommended only to use this for @nogc compatibility. Returns a reference to this instance.

  1. auto ref opAssign(Del one)
  2. auto ref opAssign(Del[] all)
    struct MulticastImpl(Del, bool assertIfNull)
    ref nothrow pure @nogc
    opAssign
    (
    Del[] all
    )
    if (
    isDelegate!Del ||
    isFunctionPointer!Del
    )
  3. auto ref opAssign(typeof(null) )

Meta