remove
Short summary
This method removes the first instance of the given object from the list. Compares objects with hash value. For example a Linked List: A B C A A D will on remove(A) becomes: B C A A D
Parameters
| Name | Type | Comment | Kind |
|---|---|---|---|
| object | CNM_AbstractObject.IObject | The object to be removed from the list | input |
Code
Declaration
METHOD remove
VAR_INPUT
(*The object to be removed from the list*)
object :CNM_AbstractObject.IObject;
END_VAR