util_copy_string_slist
Description:
[
Version ( deprecated =
true , deprecated_since =
"3.8" , since =
"3.4" ) ]
public SList<
string>
util_copy_string_slist (
owned SList<
string>? copy_to,
SList<
string> strings)
Warning: util_copy_string_slist is deprecated since 3.8.
Copies SList of strings at the end of copy_to.
Note:
Use copy_deep instead, and optionally
concat to concatenate the copied list to another
SList.
Parameters:
| copy_to |
Where to copy; can be null
|
| strings |
SList of strings to be copied
|
Returns:
|
New head of copy_to. Returned pointer can be freed with
util_free_string_slist.
|