MulticastImpl.this

Constructs 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.

  1. this(typeof(null) )
  2. this(Del one)
  3. this(immutable(Del)[] all)
    struct MulticastImpl(Del, bool assertIfNull)
    nothrow pure @nogc immutable @trusted
    this
    (
    immutable(Del)[] all
    )
    if (
    isDelegate!Del ||
    isFunctionPointer!Del
    )
  4. this(Del[] all)

Meta