removeNode
Short Summary
This method removes the first instance of the given node from the list. Compares objects with hash value.
Example
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 |
|---|---|---|---|
| node | INodeApi | the node that should be removed | input |
Code
Declaration
METHOD removeNode
VAR_INPUT
(* the node that should be removed *)
node :INodeApi;
END_VAR