Function MatrixView.opIndexAssign

Assigns a value to the element at row i, column j.

T opIndexAssign (
  T value,
  size_t i,
  size_t j
) nothrow;

Unlike opIndex(), this method checks that zero elements in a triangular matrix aren't assigned to, but only in non-release builds.