You are here: Symbol Reference > MtxVec Namespace > Functions > MtxVec.TestNil Function
MtxVec VCL
ContentsIndex
PreviousUpNext
MtxVec.TestNil Function

Raises exception if PAPointer is nil.

Pascal
procedure TestNil(a: PAPointer; b: PAPointer; c: PAPointer; d: PAPointer); overload;

Raises exception any of the PAPointer variables is nil.

var a,b: TVec; begin a := TVec.Create; b := TVec.Create; try // ... finally a.Free; end; TestNil(a,b);
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!