Skip to main content

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

NameTypeCommentKind
nodeINodeApithe node that should be removedinput

Code

Declaration

METHOD removeNode
VAR_INPUT
(* the node that should be removed *)
node :INodeApi;
END_VAR