EnglishРусский  
 Share/Save/Bookmark
 

arrstr += type

Append types to an array of strings. The operator appends a string at the end of the array of strings.

operator arrstr += (
   arrstr dest,
   str newstr
)

Return value

Returns the object which method has been called.


arrstr += arrstr

The operator appends one array of strings to another array of strings.

operator arrstr += (
   arrstr dest,
   arrstr src
)

Related links

Source

Edit