Skip to main content

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 after remove(A) becomes: B C A A D

Parameters

NameTypeCommentKind
objectCNM_AbstractObject.IObjectThe object to be removed from the listinput

Code

Declaration

METHOD ABSTRACT remove
VAR_INPUT
(*The object to be removed from the list*)
object :CNM_AbstractObject.IObject;
END_VAR