NotNull.this

Disable null construction.

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

Meta