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;
endDeclared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler