"append" (vector:: append / dyn_*::append)
Append the given values to the end of the vector/dyn_*.
Synopsis
int vector.append(T value, …
                );
        Parameters
| Parameter | Description | 
|---|---|
| value | 
                                
                                 Value or values to be appended  | 
                        
Description
-
Example
The code below will append three elements to the dyn_string.
main()
{
  dyn_string testDyn = makeDynString(); 
  testDyn.append("testString1", "testString2", "");
}
        Assignment
Vector / dyn_*