Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 1.69 KB

File metadata and controls

55 lines (42 loc) · 1.69 KB

Function: StructCopy

Creates a shallow copy of a struct.

Copies top-level keys, values, and arrays in the structure by value; copies nested structures by reference.

Method Signature

StructCopy(struct=[structloose])

Arguments

Argument Type Required Description Default
struct struct true The struct to copy

Examples

Related