StructDelete
Method Signature
StructDelete(struct=[modifiableStruct], key=[any])Arguments
Argument
Type
Required
Description
Default
Examples
Remove a key from a struct
someStruct = {
A : 1,
B : 2
};
structDelete( someStruct, "a" );
writeDump( someStruct );
Remove a key from a struct using the member function
Additional Examples
Related
Last updated
Was this helpful?
