NotNull.opAssign

Disable null assignment.

  1. typeof(this) opAssign(NotNull!U rhs)
  2. typeof(this) opAssign(typeof(null) )
    struct NotNull(T)
    @disable
    typeof(this)
    opAssign
    (
    typeof(null)
    )
    if (
    is(T == class) ||
    is(T == interface)
    ||
    is(T == U*,
    U
    ) &&
    __traits(isScalar, T)
    )

Meta