Nullable.opAssign

Assigns value to the internally-held state. If the assignment succeeds, this becomes non-null.

  1. void opAssign(T value)
    struct Nullable(T)
    void
    opAssign
    ()
    ()
  2. void opAssign(Nullable!T value)

Parameters

value T

A value of type T to assign to this Nullable.

Meta