You are here: Symbol Reference > MtxExprInt Namespace > Classes > VectorInt Record > public > Concat Method > VectorInt.Concat Method (array of TVecInt)
MtxVec VCL
ContentsIndex
PreviousUpNext
VectorInt.Concat Method (array of TVecInt)

Concatenates an array of TVecInt objects.

Pascal
function Concat(const Src: array of TVecInt): TVecInt; overload;

Concatenates an array of TVecInt objects. The method copies the contents of all TVecInt objects from the Src array to the calling object. The Length and TMtxVec.ComplexComplexproperties of the calling vector are set implicitly. An exception is raised, if Complex properties of TVecInt objects do not match.

var a,b,c,d: TVecInt; begin CreateIt(a,b,c,d); try a.SetIt([1,2,3]); b.Copy(a); c.Concat([a,b]); // c = [1,2,3,1,2,3] d.Size(10); d.SetZero(0,4); d.Concat(4,[c]); // d = [0,0,0,0,1,2,3,1,2,3] finally FreeIt(a,b,c,d); end; end;
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!