Matrix::BlockFinish Method

void BlockFinish() const;

Deinitializes block processing before the final block is processed.

Remarks:

Call this routine before breaking out of a while-loop prematurely.

Vec.BlockInit
While not Vec.BlockEnd do
Begin
    If Vec.Min < 0 then //check some condition, if you need to exit
    begin
      Vec.BlockFinish;  //finish the loop
      Break;  //and break out
    end;
    Vec.BlockNext;
end
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler