Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 270 Bytes

function.HH.Lib.Vec.concat.md

File metadata and controls

9 lines (9 loc) · 270 Bytes
$original_vec = vec["abc", "def", "ghi"];
$rest = vec["xxx", "yyy"];
$concat_vec = Vec\concat($original_vec, $rest);
echo "Resulting concat vec: \n";
\print_r($concat_vec);
//Output: Resulting concat vec: 
//vec["abc", "def", "ghi", "xxx", "yyy"]