util_copy_object_slist
Description:
[
Version ( deprecated =
true , deprecated_since =
"3.8" , since =
"3.4" ) ]
public SList<
Object>
util_copy_object_slist (
owned SList<
Object>? copy_to,
SList<
Object> objects)
Warning: util_copy_object_slist is deprecated since 3.8.
Copies SList of Object
<!-- -->s 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
|
| objects |
SList of Object
<!-- -->s to be copied
|
Returns:
|
New head of copy_to. Returned pointer can be freed with
util_free_object_slist.
|